RETURN我怎麼能讓我每次:make
在VIM中運行時不用按這個鍵呢?
答案1
命令前綴:silent
將會抑制其輸出,例如:silent make
.為了快速訪問,您可以透過將以下內容放入 .vimrc 中來定義新命令:
command Smake silent make
其他解決方案在這裡:
http://vim.wikia.com/wiki/Avoiding_the_%22Hit_ENTER_to_continue%22_prompts
答案2
喲@WakiMiko,這不是OP想要的。他仍然想看到輸出,只是不想看到煩人的提示。答案是set nomore
因為一旦設定了,就不再有提示了。