summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2013-04-05 15:41:05 +0200
committerBram Moolenaar <bram@vim.org>2013-04-05 15:41:05 +0200
commit41d476cb983f34010cac00631838dff86da72d3f (patch)
tree18595496530908706e8ce398e8c1c6adf785ade6
parentaf4164c4f88ab23e89f65e786a18486a1fdebac8 (diff)
downloadvim-41d476cb983f34010cac00631838dff86da72d3f.tar.gz
updated for version 7.3.878v7.3.878v7-3-878
Problem: 'fileignorecase' is missing in options window and quickref. Solution: Add the option.
-rw-r--r--runtime/doc/quickref.txt3
-rw-r--r--runtime/optwin.vim4
-rw-r--r--src/version.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/runtime/doc/quickref.txt b/runtime/doc/quickref.txt
index 5f76f71e..26889853 100644
--- a/runtime/doc/quickref.txt
+++ b/runtime/doc/quickref.txt
@@ -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
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index dd36112d..048f7eec 100644
--- 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")
diff --git a/src/version.c b/src/version.c
index ce12628a..8d3839ad 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 878,
+/**/
877,
/**/
876,