How can I make it so that I don't have to press the RETURN key every time I run :make in VIM?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Prefixing commands with :silent will suppress their output, e.g. :silent make. For quick access your can define a new command by putting the following in your .vimrc:

command Smake silent make

Other solutions here:

http://vim.wikia.com/wiki/Avoiding_the_%22Hit_ENTER_to_continue%22_prompts

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.