Reputation: 2911
I know how to disable this inside Vim, I am curious is it possible to disable this at all when running vim in terminal.
e.g.
tdi@piesek:~$ vim
ycm_client_support.[so|pyd|dll] and ycm_core.[so|pyd|dll] not detected; you need to compile YCM before using it. Read the docs!
Press ENTER or type command to continue
My scenario is that I install vim and Vundle plugins automatically via saltstack for all users (vim +PluginInstall +qall
). Some plugins, however need more love, e.g. YouCompleteMe, which gives this message.
I would like to force vim to 'go on' even when there are some things that keep on wanting ENTER pressed.
Upvotes: 6
Views: 4371
Reputation: 9
I tried it by deleting one by one.And I find that set syntax
cause the problem..not sure if is the culprit.
So you can delete it to solve the problem.
Upvotes: -2
Reputation: 1
cd ~/.vim/bundle/YouCompleteMe
./install.py
Fixed this problem for me, I have Ubuntu 14 as OS and CMake
installed, previously..
Upvotes: 0
Reputation: 172510
If you know the commands (in your ~/.vimrc
) who trigger the message, you can prepend :silent!
in front of it. This will suppress any output and errors.
For general messages, you can try :set nomore
.
Upvotes: 4