krispy
krispy

Reputation: 1347

Vim YouCompleteMe Pattern Not Found Error

I'm getting the following error in MacVim on Yosemite from YouCompleteMe whenever I write Javascript. It happens almost every line.

Error Message

Can someone please help me silence this message?

I know I am running the latest version of MacVim w/ homebrew. I have tried this patch but it didn't work.

Upvotes: 1

Views: 690

Answers (1)

FDinoff
FDinoff

Reputation: 31429

Upgrade to include vim patch 7.4.314 and the message will automatically disappear if you are using YouCompleteMe.

Patch 7.4.314 introduced the shortmess c option which disables that message. From :help shortmess

 c don't give |ins-completion-menu| messages.  For example,
    "-- XXX completion (YYY)", "match 1 of 2", "The only match",
    "Pattern not found", "Back at original", etc.

YCM will automatically set this if it detects that vim has the necessary patch.

macports does not currently support up to this patch level. So the only options is to either wait until macports adds it or compile from source.

Upvotes: 2

Related Questions