home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.3 / 7.3.878 < prev    next >
Encoding:
Internet Message Format  |  2013-04-04  |  3.1 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.878
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.878
  11. Problem:    'fileignorecase' is missing in options window and quickref.
  12. Solution:   Add the option.
  13. Files:        runtime/optwin.vim, runtime/doc/quickref.txt
  14.  
  15.  
  16. *** ../vim-7.3.877/runtime/optwin.vim    2010-08-15 21:57:20.000000000 +0200
  17. --- runtime/optwin.vim    2013-04-05 15:35:22.000000000 +0200
  18. ***************
  19. *** 1042,1047 ****
  20. --- 1035,1044 ----
  21.     call append("$", "wildignore\tlist of patterns to ignore files for file name completion")
  22.     call <SID>OptionG("wig", &wig)
  23.   endif
  24. + call append("$", "fileignorecase\tignore case when using file names")
  25. + call <SID>BinOptionG("fic", &fic)
  26. + call append("$", "wildignorecase\tignore case when completing file names")
  27. + call <SID>BinOptionG("wic", &wic)
  28.   if has("wildmenu")
  29.     call append("$", "wildmenu\tcommand-line completion shows a list of matches")
  30.     call <SID>BinOptionG("wmnu", &wmnu)
  31. ***************
  32. *** 1340,1342 ****
  33. --- 1339,1343 ----
  34.   let &sc = s:old_sc
  35.   let &cpo = s:cpo_save
  36.   unlet s:old_title s:old_icon s:old_ru s:old_sc s:cpo_save s:idx s:lnum
  37. + " vim: ts=8 sw=2 sts=2
  38. *** ../vim-7.3.877/runtime/doc/quickref.txt    2010-08-15 21:57:17.000000000 +0200
  39. --- runtime/doc/quickref.txt    2013-04-05 15:36:35.000000000 +0200
  40. ***************
  41. *** 690,695 ****
  42. --- 691,697 ----
  43.   'fileencodings'   'fencs'   automatically detected character encodings
  44.   'fileformat'      'ff'        file format used for file I/O
  45.   'fileformats'      'ffs'     automatically detected values for 'fileformat'
  46. + 'fileignorecase'  'fic'     ignore case when using file names
  47.   'filetype'      'ft'        type of file, used for autocommands
  48.   'fillchars'      'fcs'     characters to use for displaying special items
  49.   'fkmap'          'fk'        Farsi keyboard mapping
  50. ***************
  51. *** 934,939 ****
  52. --- 937,943 ----
  53.   'wildchar'      'wc'        command-line character for wildcard expansion
  54.   'wildcharm'      'wcm'     like 'wildchar' but also works when mapped
  55.   'wildignore'      'wig'     files matching these patterns are not completed
  56. + 'wildignorecase'  'wic'     ignore case when completing file names
  57.   'wildmenu'      'wmnu'    use menu for command line completion
  58.   'wildmode'      'wim'     mode for 'wildchar' command-line expansion
  59.   'wildoptions'      'wop'     specifies how command line completion is done
  60. *** ../vim-7.3.877/src/version.c    2013-04-03 21:14:25.000000000 +0200
  61. --- src/version.c    2013-04-05 15:37:09.000000000 +0200
  62. ***************
  63. *** 730,731 ****
  64. --- 730,733 ----
  65.   {   /* Add new patch number below this line */
  66. + /**/
  67. +     878,
  68.   /**/
  69.  
  70. -- 
  71. hundred-and-one symptoms of being an internet addict:
  72. 121. You ask for e-mail adresses instead of telephone numbers.
  73.  
  74.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  75. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  76. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  77.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  78.