comparison runtime/optwin.vim @ 184:476198990769

updated for version 7.0057
author vimboss
date Mon, 07 Mar 2005 23:00:57 +0000
parents f529edb9bab3
children 997a094e44d2
comparison
equal deleted inserted replaced
183:22cbdf0ba6de 184:476198990769
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: 2004 Dec 24 4 " Last Change: 2005 Mar 07
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
271 call <SID>BinOptionG("ic", &ic) 271 call <SID>BinOptionG("ic", &ic)
272 call append("$", "smartcase\toverride 'ignorecase' when pattern has upper case characters") 272 call append("$", "smartcase\toverride 'ignorecase' when pattern has upper case characters")
273 call <SID>BinOptionG("scs", &scs) 273 call <SID>BinOptionG("scs", &scs)
274 call append("$", "casemap\tWhat method to use for changing case of letters") 274 call append("$", "casemap\tWhat method to use for changing case of letters")
275 call <SID>OptionG("cmp", &cmp) 275 call <SID>OptionG("cmp", &cmp)
276 call append("$", "maxmempattern\tmaximum amount of memory in Kbyte used for pattern matching")
277 call append("$", " \tset mmp=" . &mmp)
276 call append("$", "define\tpattern for a macro definition line") 278 call append("$", "define\tpattern for a macro definition line")
277 call append("$", "\t(global or local to buffer)") 279 call append("$", "\t(global or local to buffer)")
278 call <SID>OptionG("def", &def) 280 call <SID>OptionG("def", &def)
279 if has("find_in_path") 281 if has("find_in_path")
280 call append("$", "include\tpattern for an include-file line") 282 call append("$", "include\tpattern for an include-file line")
552 call append("$", "linespace\tnumber of pixel lines to use between characters") 554 call append("$", "linespace\tnumber of pixel lines to use between characters")
553 call append("$", " \tset lsp=" . &lsp) 555 call append("$", " \tset lsp=" . &lsp)
554 if has("balloon_eval") 556 if has("balloon_eval")
555 call append("$", "balloondelay\tdelay in milliseconds before a balloon may pop up") 557 call append("$", "balloondelay\tdelay in milliseconds before a balloon may pop up")
556 call append("$", " \tset bdlay=" . &bdlay) 558 call append("$", " \tset bdlay=" . &bdlay)
557 if has("sun_workshop") 559 call append("$", "ballooneval\twhether the balloon evaluation is to be used")
558 call append("$", "ballooneval\twhether the balloon evaluation is to be used") 560 call <SID>BinOptionG("beval", &beval)
559 call <SID>BinOptionG("beval", &beval) 561 if has("eval")
562 call append("$", "balloonexpr\texpression to show in balloon eval")
563 call append("$", " \tset bexpr=" . &bexpr)
560 endif 564 endif
561 endif 565 endif
562 endif 566 endif
563 567
564 if has("printer") 568 if has("printer")