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 / 6.0.223 < prev    next >
Encoding:
Internet Message Format  |  2002-02-15  |  2.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.223
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.0.223
  11. Problem:    When splitting a window that contains the explorer, hitting CR on
  12.         a file name gives error messages.
  13. Solution:   Set the window variables after splitting the window.
  14. Files:        runtime/plugin/explorer.vim
  15.  
  16.  
  17. *** ../vim60.222/runtime/plugin/explorer.vim    Mon Feb 11 22:00:42 2002
  18. --- runtime/plugin/explorer.vim    Sat Feb 16 11:50:58 2002
  19. ***************
  20. *** 1,7 ****
  21.   "=============================================================================
  22.   " File: explorer.vim
  23.   " Author: M A Aziz Ahmed (aziz@acorn-networks.com)
  24. ! " Last Change:    2002 Feb 11
  25.   " Version: 2.5 + changes
  26.   " Additions by Mark Waggoner (waggoner@aracnet.com) et al.
  27.   "-----------------------------------------------------------------------------
  28. --- 1,7 ----
  29.   "=============================================================================
  30.   " File: explorer.vim
  31.   " Author: M A Aziz Ahmed (aziz@acorn-networks.com)
  32. ! " Last Change:    2002 Feb 16
  33.   " Version: 2.5 + changes
  34.   " Additions by Mark Waggoner (waggoner@aracnet.com) et al.
  35.   "-----------------------------------------------------------------------------
  36. ***************
  37. *** 1248,1254 ****
  38. --- 1248,1258 ----
  39.   "
  40.   augroup fileExplorer
  41.     au!
  42. +   " Fill the window when entering the buffer; ":edit dir".
  43.     au BufEnter * call s:EditDir()
  44. +   " Set the window variables after a split; ":split".
  45. +   au WinEnter * if !exists("w:sortdirection") | call s:EditDir() | endif
  46. +   " Fill the windows after Vim has started up.
  47.     au VimEnter * call s:EditAll()
  48.   augroup end
  49.   
  50. *** ../vim60.222/src/version.c    Tue Feb 12 12:14:36 2002
  51. --- src/version.c    Sat Feb 16 11:52:10 2002
  52. ***************
  53. *** 608,609 ****
  54. --- 608,611 ----
  55.   {   /* Add new patch number below this line */
  56. + /**/
  57. +     223,
  58.   /**/
  59.  
  60. -- 
  61. Beer & pretzels can't be served at the same time in any bar or restaurant.
  62.         [real standing law in North Dakota, United States of America]
  63.  
  64.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  65. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  66. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  67.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  68.