When using vim in the terminal, it essentially blanks out the terminal's window and gives you a new one to start coding in, yet when you exit vim the terminal's previous output is still listed. How do you clear the terminal so that it only outputs your program's output, but returns to its normal state once the process has ended? (In linux, fedora)
|
|
At the low level, you send the terminal program a set of control characters that tell it what to do. This can be a bit too complex to to manage manually. So instead, you might want to look at a console library like ncurses, which can manage all this complexity for you. With respect specifically to the previous content magically appearing after the program exits, that's actually an xterm feature which vim is taking advantage of and which most modern terminals support. It's called "alternate screen" or simply "altscreen". Essentially you tell the terminal program "Ok, now switch to a completely new screen, we'll come back to the other one later". The command to switch to the alternate screen is typically
and then to switch back:
Or for a more more complete solution which relies a bit less on your shell to set things right (these are the sequences vim normally uses):
|
|||||||||
|
|
You can type "clear", or add a system command in your program to call "clear". Also, if you're not aware, you can run system commands from inside vim, so you dont have to exit and type clear. You can compile and run your programs from inside vim as well, for example ->
Also, I never use this technique, but I believe you can have vim call a new terminal by using |
||||
|