diff 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
line wrap: on
line diff
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -1,7 +1,7 @@
 " These commands create the option window.
 "
 " Maintainer:	Bram Moolenaar <Bram@vim.org>
-" Last Change:	2012 Feb 22
+" Last Change:	2013 Apr 05
 
 " If there already is an option window, jump to that one.
 if bufwinnr("option-window") > 0
@@ -1035,6 +1035,8 @@ if has("wildignore")
   call append("$", "wildignore\tlist of patterns to ignore files for file name completion")
   call <SID>OptionG("wig", &wig)
 endif
+call append("$", "fileignorecase\tignore case when using file names")
+call <SID>BinOptionG("fic", &fic)
 call append("$", "wildignorecase\tignore case when completing file names")
 call <SID>BinOptionG("wic", &wic)
 if has("wildmenu")