diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-05-28 21:40:52 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-05-28 21:40:52 +0200 |
commit | ea389e910326a0b44a9c534535c1c4c8b1841388 (patch) | |
tree | e0065bab0382c8780d6a385f35ec22575a53042e /src/option.h | |
parent | 6f6c0f8085a5b0855f9dce8378086fd5e06a219b (diff) | |
download | vim-git-ea389e910326a0b44a9c534535c1c4c8b1841388.tar.gz |
updated for version 7.4.314v7.4.314
Problem: Completion messages can get in the way of a plugin.
Solution: Add 'c' flag to 'shortmess' option. (Shougo Matsu)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h index 4ccde58a2..dc5662948 100644 --- a/src/option.h +++ b/src/option.h @@ -212,7 +212,8 @@ #define SHM_SEARCH 's' /* no search hit bottom messages */ #define SHM_ATTENTION 'A' /* no ATTENTION messages */ #define SHM_INTRO 'I' /* intro messages */ -#define SHM_ALL "rmfixlnwaWtToOsAI" /* all possible flags for 'shm' */ +#define SHM_COMPLETIONMENU 'c' /* completion menu messages */ +#define SHM_ALL "rmfixlnwaWtToOsAIc" /* all possible flags for 'shm' */ /* characters for p_go: */ #define GO_ASEL 'a' /* autoselect */ |