|
Karsten Hopp |
023303 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
023303 |
Subject: Patch 7.3.878
|
|
Karsten Hopp |
023303 |
Fcc: outbox
|
|
Karsten Hopp |
023303 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
023303 |
Mime-Version: 1.0
|
|
Karsten Hopp |
023303 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
023303 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
023303 |
------------
|
|
Karsten Hopp |
023303 |
|
|
Karsten Hopp |
023303 |
Patch 7.3.878
|
|
Karsten Hopp |
023303 |
Problem: 'fileignorecase' is missing in options window and quickref.
|
|
Karsten Hopp |
023303 |
Solution: Add the option.
|
|
Karsten Hopp |
023303 |
Files: runtime/optwin.vim, runtime/doc/quickref.txt
|
|
Karsten Hopp |
023303 |
|
|
Karsten Hopp |
023303 |
|
|
Karsten Hopp |
023303 |
*** ../vim-7.3.877/runtime/optwin.vim 2010-08-15 21:57:20.000000000 +0200
|
|
Karsten Hopp |
023303 |
--- runtime/optwin.vim 2013-04-05 15:35:22.000000000 +0200
|
|
Karsten Hopp |
023303 |
***************
|
|
Karsten Hopp |
023303 |
*** 1042,1047 ****
|
|
Karsten Hopp |
023303 |
--- 1035,1044 ----
|
|
Karsten Hopp |
023303 |
call append("$", "wildignore\tlist of patterns to ignore files for file name completion")
|
|
Karsten Hopp |
023303 |
call <SID>OptionG("wig", &wig)
|
|
Karsten Hopp |
023303 |
endif
|
|
Karsten Hopp |
023303 |
+ call append("$", "fileignorecase\tignore case when using file names")
|
|
Karsten Hopp |
023303 |
+ call <SID>BinOptionG("fic", &fic)
|
|
Karsten Hopp |
023303 |
+ call append("$", "wildignorecase\tignore case when completing file names")
|
|
Karsten Hopp |
023303 |
+ call <SID>BinOptionG("wic", &wic)
|
|
Karsten Hopp |
023303 |
if has("wildmenu")
|
|
Karsten Hopp |
023303 |
call append("$", "wildmenu\tcommand-line completion shows a list of matches")
|
|
Karsten Hopp |
023303 |
call <SID>BinOptionG("wmnu", &wmnu)
|
|
Karsten Hopp |
023303 |
***************
|
|
Karsten Hopp |
023303 |
*** 1340,1342 ****
|
|
Karsten Hopp |
023303 |
--- 1339,1343 ----
|
|
Karsten Hopp |
023303 |
let &sc = s:old_sc
|
|
Karsten Hopp |
023303 |
let &cpo = s:cpo_save
|
|
Karsten Hopp |
023303 |
unlet s:old_title s:old_icon s:old_ru s:old_sc s:cpo_save s:idx s:lnum
|
|
Karsten Hopp |
023303 |
+
|
|
Karsten Hopp |
023303 |
+ " vim: ts=8 sw=2 sts=2
|
|
Karsten Hopp |
023303 |
*** ../vim-7.3.877/runtime/doc/quickref.txt 2010-08-15 21:57:17.000000000 +0200
|
|
Karsten Hopp |
023303 |
--- runtime/doc/quickref.txt 2013-04-05 15:36:35.000000000 +0200
|
|
Karsten Hopp |
023303 |
***************
|
|
Karsten Hopp |
023303 |
*** 690,695 ****
|
|
Karsten Hopp |
023303 |
--- 691,697 ----
|
|
Karsten Hopp |
023303 |
'fileencodings' 'fencs' automatically detected character encodings
|
|
Karsten Hopp |
023303 |
'fileformat' 'ff' file format used for file I/O
|
|
Karsten Hopp |
023303 |
'fileformats' 'ffs' automatically detected values for 'fileformat'
|
|
Karsten Hopp |
023303 |
+ 'fileignorecase' 'fic' ignore case when using file names
|
|
Karsten Hopp |
023303 |
'filetype' 'ft' type of file, used for autocommands
|
|
Karsten Hopp |
023303 |
'fillchars' 'fcs' characters to use for displaying special items
|
|
Karsten Hopp |
023303 |
'fkmap' 'fk' Farsi keyboard mapping
|
|
Karsten Hopp |
023303 |
***************
|
|
Karsten Hopp |
023303 |
*** 934,939 ****
|
|
Karsten Hopp |
023303 |
--- 937,943 ----
|
|
Karsten Hopp |
023303 |
'wildchar' 'wc' command-line character for wildcard expansion
|
|
Karsten Hopp |
023303 |
'wildcharm' 'wcm' like 'wildchar' but also works when mapped
|
|
Karsten Hopp |
023303 |
'wildignore' 'wig' files matching these patterns are not completed
|
|
Karsten Hopp |
023303 |
+ 'wildignorecase' 'wic' ignore case when completing file names
|
|
Karsten Hopp |
023303 |
'wildmenu' 'wmnu' use menu for command line completion
|
|
Karsten Hopp |
023303 |
'wildmode' 'wim' mode for 'wildchar' command-line expansion
|
|
Karsten Hopp |
023303 |
'wildoptions' 'wop' specifies how command line completion is done
|
|
Karsten Hopp |
023303 |
*** ../vim-7.3.877/src/version.c 2013-04-03 21:14:25.000000000 +0200
|
|
Karsten Hopp |
023303 |
--- src/version.c 2013-04-05 15:37:09.000000000 +0200
|
|
Karsten Hopp |
023303 |
***************
|
|
Karsten Hopp |
023303 |
*** 730,731 ****
|
|
Karsten Hopp |
023303 |
--- 730,733 ----
|
|
Karsten Hopp |
023303 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
023303 |
+ /**/
|
|
Karsten Hopp |
023303 |
+ 878,
|
|
Karsten Hopp |
023303 |
/**/
|
|
Karsten Hopp |
023303 |
|
|
Karsten Hopp |
023303 |
--
|
|
Karsten Hopp |
023303 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
023303 |
121. You ask for e-mail adresses instead of telephone numbers.
|
|
Karsten Hopp |
023303 |
|
|
Karsten Hopp |
023303 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
023303 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
023303 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
023303 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|