From 71afbfe6cd697de30a9e0d57e5a6434cf4bb0f13 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 19 Mar 2013 16:49:16 +0100 Subject: updated for version 7.3.872 Problem: On some systems case of file names is always ignored, on others never. Solution: Add the 'fileignorecase' option to control this at runtime. Implies 'wildignorecase'. --- runtime/doc/options.txt | 12 ++++++++++-- runtime/plugin/matchparen.vim | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) (limited to 'runtime') diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index ac3d394a1..fbfad697f 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1,4 +1,4 @@ -*options.txt* For Vim version 7.3. Last change: 2013 Mar 13 +*options.txt* For Vim version 7.3. Last change: 2013 Mar 19 VIM REFERENCE MANUAL by Bram Moolenaar @@ -2941,6 +2941,14 @@ A jump table for the options with a short description can be found at |Q_op|. NOTE: This option is set to the Vi default value when 'compatible' is set and to the Vim default value when 'compatible' is reset. + *'fileignorecase'* *'wic'* *'nofileignorecase'* *'nowic'* +'fileignorecase' 'wic' boolean (default on for systems where case in file + names is normally ignored. + global + {not in Vi} + When set case is ignored when using file names and directories. + See 'wildignorecase' for only ignoring case when doing completion. + *'filetype'* *'ft'* 'filetype' 'ft' string (default: "") local to buffer @@ -7903,7 +7911,7 @@ A jump table for the options with a short description can be found at |Q_op|. global {not in Vi} When set case is ignored when completing file names and directories. - Has no effect on systems where file name case is generally ignored. + Has no effect when 'fileignorecase' is set. Does not apply when the shell is used to expand wildcards, which happens when there are special characters. diff --git a/runtime/plugin/matchparen.vim b/runtime/plugin/matchparen.vim index 32f0a8349..c9cf903d5 100644 --- a/runtime/plugin/matchparen.vim +++ b/runtime/plugin/matchparen.vim @@ -1,6 +1,6 @@ " Vim plugin for showing matching parens " Maintainer: Bram Moolenaar -" Last Change: 2011 Aug 27 +" Last Change: 2013 Mar 19 " Exit quickly when: " - this plugin was already loaded (or disabled) -- cgit v1.2.1