How do I disable the "Press ENTER or type command to continue" prompt in Vim?

I'm not sure how to do it globally though for one command:

:silent !<command>

Be sure to include a space after silent


Found out one workaround: Add an extra <CR> to the map command.

map <F5> :wall!<CR>:!sbcl --load foo.cl<CR><CR>

:help hit-enter

Set the cmdheight to 2, in my vimrc (:e $MYVIMRC):

:set cmdheight=2

More info here.