]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.878 v7.3.878
authorBram Moolenaar <Bram@vim.org>
Fri, 5 Apr 2013 13:41:05 +0000 (15:41 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 5 Apr 2013 13:41:05 +0000 (15:41 +0200)
Problem:    'fileignorecase' is missing in options window and quickref.
Solution:   Add the option.

runtime/doc/quickref.txt
runtime/optwin.vim
src/version.c

index 5f76f71e699367e5747d0414de2b4e88be04a4cc..268898539c77dd7a9079ce974b95a2a4e0ac536f 100644 (file)
@@ -1,4 +1,4 @@
-*quickref.txt*  For Vim version 7.3.  Last change: 2013 Feb 06
+*quickref.txt*  For Vim version 7.3.  Last change: 2013 Apr 05
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -691,6 +691,7 @@ Short explanation of each option:           *option-list*
 'fileencodings'   'fencs'   automatically detected character encodings
 'fileformat'     'ff'      file format used for file I/O
 'fileformats'    'ffs'     automatically detected values for 'fileformat'
+'fileignorecase'  'fic'     ignore case when using file names
 'filetype'       'ft'      type of file, used for autocommands
 'fillchars'      'fcs'     characters to use for displaying special items
 'fkmap'                  'fk'      Farsi keyboard mapping
index dd36112d651767fabc657a86b5fe35c9b4a0f46f..048f7eec9ce3b122740369397379075251186c20 100644 (file)
@@ -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")
index ce12628ad106daf970301e59fa7aeca81bde108a..8d3839ad5cb55336ce4304afc95ba0beb0334828 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    878,
 /**/
     877,
 /**/