vim

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


Is there any way to disable the "Press ENTER or type command to continue" prompt that appears after executing an external command?

EDIT: Found a workaround: Add an extra <CR> to the shortcut in my .lvimrc.

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

Any better ideas?


Solution

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

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