Create two separate windows in terminal
Picture a terminal. There are two windows inside that terminal. One on top, one on bottom. The top one is much bigger. The top one receives asynchronous updates. The bottom one is for user input.
It would work almost exactly the same as vim - th开发者_Go百科e text editor.
I'm writing this in Python. I'm guessing you would do this by using curses
, but I'm not sure if it's possible.
Yes, you want the python standard library implementation of ncurses for this.
http://docs.python.org/library/curses.html
Yes, curses + some code that will do parallel stuff
精彩评论