comparison runtime/optwin.vim @ 2662:916c90b37ea9

Update runtime files.
author Bram Moolenaar <bram@vim.org>
date Fri, 10 Dec 2010 20:35:50 +0100
parents 0c8219a26bc9
children fd09a9c8468e
comparison
equal deleted inserted replaced
2661:a03f7551bacc 2662:916c90b37ea9
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: 2010 Jul 24 4 " Last Change: 2010 Dec 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
1040 endif 1040 endif
1041 if has("wildignore") 1041 if has("wildignore")
1042 call append("$", "wildignore\tlist of patterns to ignore files for file name completion") 1042 call append("$", "wildignore\tlist of patterns to ignore files for file name completion")
1043 call <SID>OptionG("wig", &wig) 1043 call <SID>OptionG("wig", &wig)
1044 endif 1044 endif
1045 call append("$", "wildignorecase\tignore case when completing file names")
1046 call <SID>BinOptionG("wic", &wic)
1045 if has("wildmenu") 1047 if has("wildmenu")
1046 call append("$", "wildmenu\tcommand-line completion shows a list of matches") 1048 call append("$", "wildmenu\tcommand-line completion shows a list of matches")
1047 call <SID>BinOptionG("wmnu", &wmnu) 1049 call <SID>BinOptionG("wmnu", &wmnu)
1048 endif 1050 endif
1049 if has("vertsplit") 1051 if has("vertsplit")