comparison runtime/optwin.vim @ 4254:97a5ce76cb7d v7.3.878

updated for version 7.3.878 Problem: 'fileignorecase' is missing in options window and quickref. Solution: Add the option.
author Bram Moolenaar <bram@vim.org>
date Fri, 05 Apr 2013 15:41:05 +0200
parents 8dcf3ea92b63
children 605c9ce57ec3
comparison
equal deleted inserted replaced
4253:ccbde540a714 4254:97a5ce76cb7d
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: 2012 Feb 22 4 " Last Change: 2013 Apr 05
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
1033 endif 1033 endif
1034 if has("wildignore") 1034 if has("wildignore")
1035 call append("$", "wildignore\tlist of patterns to ignore files for file name completion") 1035 call append("$", "wildignore\tlist of patterns to ignore files for file name completion")
1036 call <SID>OptionG("wig", &wig) 1036 call <SID>OptionG("wig", &wig)
1037 endif 1037 endif
1038 call append("$", "fileignorecase\tignore case when using file names")
1039 call <SID>BinOptionG("fic", &fic)
1038 call append("$", "wildignorecase\tignore case when completing file names") 1040 call append("$", "wildignorecase\tignore case when completing file names")
1039 call <SID>BinOptionG("wic", &wic) 1041 call <SID>BinOptionG("wic", &wic)
1040 if has("wildmenu") 1042 if has("wildmenu")
1041 call append("$", "wildmenu\tcommand-line completion shows a list of matches") 1043 call append("$", "wildmenu\tcommand-line completion shows a list of matches")
1042 call <SID>BinOptionG("wmnu", &wmnu) 1044 call <SID>BinOptionG("wmnu", &wmnu)