How do I disable the "Press ENTER or type command to continue" prompt in Vim?
:help hit-enter
Found out one workaround: Add an extra <CR>
to the map command.
map <F5> :wall!<CR>:!sbcl --load foo.cl<CR><CR>
I'm not sure how to do it globally though for one command:
:silent !<command>
Be sure to include a space after silent