使用時! {cmd}在vim中,默認情況下,前一個命令的輸出不會被清除。例如,我在VIM中執行了兩個外部命令:!使和! gcc。當我輸入! gcc,前一個命令的輸出爲!使包括:在VIM中清除舊外部命令的輸出
[email protected]:~$ vim
make: *** No targets specified and no makefile found. Stop.
shell returned 2
Press ENTER or type command to continue
gcc: fatal error: no input files
compilation terminated.
shell returned 4
Press ENTER or type command to continue
我希望VIM清除這些舊輸出,這樣我可以清楚地查看當前命令的輸出,你可以提供這方面的任何建議嗎?