Reputation: 8885
In vim, is there any way to suppress omnicompletion messages like:
"-- Keyword completion (^N^P) Back at original"
"-- Keyword completion (^N^P) Pattern not found"
"-- Keyword completion (^N^P) match 1 of 3"
It's no big deal, just a bit distracting as I use it all the time.
Upvotes: 2
Views: 717
Reputation: 565
It can be turned of after vim 7.4.314, I found this patch by Shougo, add setlocal shortmess+=c
would supress these messages
Upvotes: 3
Reputation: 172590
These messages are supposed to help you with moving through the completion candidates, so I'm afraid there's no way to turn them off.
Upvotes: 0