clime
clime

Reputation: 8885

vim: disable omnicompletion status messages (e.g. Pattern not found)

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

Answers (2)

rox
rox

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

Ingo Karkat
Ingo Karkat

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

Related Questions