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.1.251 < prev    next >
Encoding:
Internet Message Format  |  2002-11-10  |  1.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.251
  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.1.251
  11. Problem:    Can't use completion for ":lcd" and ":lchdir" like ":cd".
  12. Solution:   Expand directory names for these commands. (Servatius Brandt)
  13. Files:        src/ex_docmd.c
  14.  
  15.  
  16. *** ../vim61.250/src/ex_docmd.c    Thu Nov  7 21:20:19 2002
  17. --- src/ex_docmd.c    Thu Nov  7 21:17:23 2002
  18. ***************
  19. *** 2527,2532 ****
  20. --- 2529,2536 ----
  21.       {
  22.       case CMD_cd:
  23.       case CMD_chdir:
  24. +     case CMD_lcd:
  25. +     case CMD_lchdir:
  26.           if (xp->xp_context == EXPAND_FILES)
  27.           xp->xp_context = EXPAND_DIRECTORIES;
  28.           break;
  29. *** ../vim61.250/src/version.c    Sun Nov 10 13:33:34 2002
  30. --- src/version.c    Mon Nov 11 21:24:38 2002
  31. ***************
  32. *** 608,609 ****
  33. --- 608,611 ----
  34.   {   /* Add new patch number below this line */
  35. + /**/
  36. +     251,
  37.   /**/
  38.  
  39. -- 
  40. A)bort, R)etry, P)lease don't bother me again
  41.  
  42.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  43. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  44. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  45.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  46.