diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-07-02 15:38:35 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-07-02 15:38:35 +0000 |
commit | cfbc5ee48e1b582f418f2d92ccbc4c4e84c803e1 (patch) | |
tree | 7586fe6160998a4c76a48dab221e38efe55257ef /runtime/optwin.vim | |
parent | 843ee41eb8258ac50ed81976757d8b228382a880 (diff) | |
download | vim-git-cfbc5ee48e1b582f418f2d92ccbc4c4e84c803e1.tar.gz |
updated for version 7.0004
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index d5f45115d..bc70fcdf1 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: 2004 May 04 +" Last Change: 2004 Jul 02 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -656,6 +656,9 @@ if has("insert_expand") call append("$", "complete\tspecifies how Insert mode completion works") call append("$", "\t(local to buffer)") call <SID>OptionL("cpt") + call append("$", "completefunc\tuser defined function for Insert mode completion") + call append("$", "\t(local to buffer)") + call <SID>OptionL("cfu") call append("$", "dictionary\tlist of dictionary files for keyword completion") call append("$", "\t(global or local to buffer)") call <SID>OptionG("dict", &dict) @@ -1006,6 +1009,11 @@ call append("$", "\t(local to buffer)") call <SID>OptionL("isk") call append("$", "isprint\tspecifies printable characters") call <SID>OptionG("isp", &isp) +if has("textobjects") + call append("$", "quoteescape\tspecifies escape characters in a string") + call append("$", "\t(local to buffer)") + call <SID>OptionL("qe") +endif if has("rightleft") call append("$", "rightleft\tdisplay the buffer right-to-left") call append("$", "\t(local to window)") |