comparison runtime/optwin.vim @ 771:c0f1b710ce07

updated for version 7.0226
author vimboss
date Thu, 16 Mar 2006 21:35:52 +0000
parents 59971e227f8c
children fb913578cbf5
comparison
equal deleted inserted replaced
770:f30c8ac7741c 771:c0f1b710ce07
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: 2006 Mar 12 4 " Last Change: 2006 Mar 16
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
723 call append("$", "complete\tspecifies how Insert mode completion works for CTRL-N and CTRL-P") 723 call append("$", "complete\tspecifies how Insert mode completion works for CTRL-N and CTRL-P")
724 call append("$", "\t(local to buffer)") 724 call append("$", "\t(local to buffer)")
725 call <SID>OptionL("cpt") 725 call <SID>OptionL("cpt")
726 call append("$", "completeopt\twhether to use a popup menu for Insert mode completion") 726 call append("$", "completeopt\twhether to use a popup menu for Insert mode completion")
727 call <SID>OptionG("cot", &cot) 727 call <SID>OptionG("cot", &cot)
728 call append("$", "pumheight\tmaximum height of the popup menu")
729 call <SID>OptionG("ph", &ph)
728 call append("$", "completefunc\tuser defined function for Insert mode completion") 730 call append("$", "completefunc\tuser defined function for Insert mode completion")
729 call append("$", "\t(local to buffer)") 731 call append("$", "\t(local to buffer)")
730 call <SID>OptionL("cfu") 732 call <SID>OptionL("cfu")
731 call append("$", "omnifunc\tfunction for filetype-specific Insert mode completion") 733 call append("$", "omnifunc\tfunction for filetype-specific Insert mode completion")
732 call append("$", "\t(local to buffer)") 734 call append("$", "\t(local to buffer)")