diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-07-10 18:18:40 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-07-10 18:18:40 +0200 |
commit | b6be1e2390485ff314022d2b7ce0307e42d7e2a6 (patch) | |
tree | 825fb32e5957ad9d5e7cb1f1652d2344e40eb6c3 /runtime/doc/options.txt | |
parent | 42a4512f62322fcc12c0071037161d2079d98ba5 (diff) | |
download | vim-git-b6be1e2390485ff314022d2b7ce0307e42d7e2a6.tar.gz |
patch 7.4.775v7.4.775
Problem: It is not possible to avoid using the first item of completion.
Solution: Add the "noinsert" and "noselect" values to 'completeopt'. (Shougo
Matsu)
Diffstat (limited to 'runtime/doc/options.txt')
-rw-r--r-- | runtime/doc/options.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 320b1544c..e371a74ec 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1819,6 +1819,14 @@ A jump table for the options with a short description can be found at |Q_op|. completion in the preview window. Only works in combination with "menu" or "menuone". + noinsert Do not insert any text for a match until the user selects + a match from the menu. Only works in combination with + "menu" or "menuone". No effect if "longest" is present. + + noselect Do not select a match in the menu, force the user to + select one from the menu. Only works in combination with + "menu" or "menuone". + *'concealcursor'* *'cocu'* 'concealcursor' 'cocu' string (default: "") |