summaryrefslogtreecommitdiff
path: root/runtime/optwin.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-10-03 21:52:09 +0000
committerBram Moolenaar <Bram@vim.org>2005-10-03 21:52:09 +0000
commitbb15b658647d8eca01e67df871f7cb5ed95e2534 (patch)
tree6214d5476e5b780728462e5832306a9050bef26b /runtime/optwin.vim
parent69e0ff94dce3a017feafbd0bb60e5720cda0441b (diff)
downloadvim-git-bb15b658647d8eca01e67df871f7cb5ed95e2534.tar.gz
updated for version 7.0153
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r--runtime/optwin.vim6
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index 06d297627..5c53b0560 100644
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -1,7 +1,7 @@
" These commands create the option window.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2005 Sep 13
+" Last Change: 2005 Oct 02
" If there already is an option window, jump to that one.
if bufwinnr("option-window") > 0
@@ -698,9 +698,11 @@ call append("$", "formatlistpat\tpattern to recognize a numbered list")
call append("$", "\t(local to buffer)")
call <SID>OptionL("flp")
if has("insert_expand")
- call append("$", "complete\tspecifies how Insert mode completion works")
+ call append("$", "complete\tspecifies how Insert mode completion works for CTRL-N and CTRL-P")
call append("$", "\t(local to buffer)")
call <SID>OptionL("cpt")
+ call append("$", "completeopt\twhether to use a popup menu for Insert mode completion")
+ call <SID>OptionG("cot", &cot)
call append("$", "completefunc\tuser defined function for Insert mode completion")
call append("$", "\t(local to buffer)")
call <SID>OptionL("cfu")