diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-04-05 15:41:05 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-04-05 15:41:05 +0200 |
commit | 91fc43d3f9d837e9ede66694c44e4cbcdc5c5549 (patch) | |
tree | 2fd97c3b96d2738bed985bc4b3bdb8f7391a6052 /runtime/optwin.vim | |
parent | 7bcb30e91387800261c0154c2d53b6118100dca0 (diff) | |
download | vim-git-91fc43d3f9d837e9ede66694c44e4cbcdc5c5549.tar.gz |
updated for version 7.3.878v7.3.878
Problem: 'fileignorecase' is missing in options window and quickref.
Solution: Add the option.
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index dd36112d6..048f7eec9 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") |