comparison runtime/optwin.vim @ 539:b13dbb7b797c

updated for version 7.0153
author vimboss
date Mon, 03 Oct 2005 21:52:09 +0000
parents a7ae7e043e43
children 81fe2ccc1207
comparison
equal deleted inserted replaced
538:aa6caa23a4b8 539:b13dbb7b797c
1 " These commands create the option window. 1 " These commands create the option window.
2 " 2 "
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last Change: 2005 Sep 13 4 " Last Change: 2005 Oct 02
5 5
6 " If there already is an option window, jump to that one. 6 " If there already is an option window, jump to that one.
7 if bufwinnr("option-window") > 0 7 if bufwinnr("option-window") > 0
8 let s:thiswin = winnr() 8 let s:thiswin = winnr()
9 while 1 9 while 1
696 call <SID>OptionL("fo") 696 call <SID>OptionL("fo")
697 call append("$", "formatlistpat\tpattern to recognize a numbered list") 697 call append("$", "formatlistpat\tpattern to recognize a numbered list")
698 call append("$", "\t(local to buffer)") 698 call append("$", "\t(local to buffer)")
699 call <SID>OptionL("flp") 699 call <SID>OptionL("flp")
700 if has("insert_expand") 700 if has("insert_expand")
701 call append("$", "complete\tspecifies how Insert mode completion works") 701 call append("$", "complete\tspecifies how Insert mode completion works for CTRL-N and CTRL-P")
702 call append("$", "\t(local to buffer)") 702 call append("$", "\t(local to buffer)")
703 call <SID>OptionL("cpt") 703 call <SID>OptionL("cpt")
704 call append("$", "completeopt\twhether to use a popup menu for Insert mode completion")
705 call <SID>OptionG("cot", &cot)
704 call append("$", "completefunc\tuser defined function for Insert mode completion") 706 call append("$", "completefunc\tuser defined function for Insert mode completion")
705 call append("$", "\t(local to buffer)") 707 call append("$", "\t(local to buffer)")
706 call <SID>OptionL("cfu") 708 call <SID>OptionL("cfu")
707 call append("$", "omnifunc\tfunction for filetype-specific Insert mode completion") 709 call append("$", "omnifunc\tfunction for filetype-specific Insert mode completion")
708 call append("$", "\t(local to buffer)") 710 call append("$", "\t(local to buffer)")