comparison runtime/optwin.vim @ 523:a7ae7e043e43

updated for version 7.0146
author vimboss
date Tue, 13 Sep 2005 21:20:47 +0000
parents 52e76e2b5b65
children b13dbb7b797c
comparison
equal deleted inserted replaced
522:530b30703db6 523:a7ae7e043e43
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 01 4 " Last Change: 2005 Sep 13
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
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("$", "completefunc\tuser defined function for Insert mode completion") 704 call append("$", "completefunc\tuser defined function for Insert mode completion")
705 call append("$", "\t(local to buffer)") 705 call append("$", "\t(local to buffer)")
706 call <SID>OptionL("cfu") 706 call <SID>OptionL("cfu")
707 call append("$", "occultfunc\tfunction for filetype-specific Insert mode completion") 707 call append("$", "omnifunc\tfunction for filetype-specific Insert mode completion")
708 call append("$", "\t(local to buffer)") 708 call append("$", "\t(local to buffer)")
709 call <SID>OptionL("ofu") 709 call <SID>OptionL("ofu")
710 call append("$", "dictionary\tlist of dictionary files for keyword completion") 710 call append("$", "dictionary\tlist of dictionary files for keyword completion")
711 call append("$", "\t(global or local to buffer)") 711 call append("$", "\t(global or local to buffer)")
712 call <SID>OptionG("dict", &dict) 712 call <SID>OptionG("dict", &dict)