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.372 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.372
  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.372
  11. Problem:    When using a command line mapping to <Up> with file name 
  12.             completion to go one directory up, 'wildchar' is inserted.
  13.             (Yasuhiro Matsumoto) 
  14. Solution:   Set the KeyTyped flag.
  15. Files:      src/ex_getln.c
  16.  
  17.  
  18. *** ../vim-7.3.371/src/ex_getln.c    2011-10-26 22:02:10.000000000 +0200
  19. --- src/ex_getln.c    2011-12-08 18:40:49.000000000 +0100
  20. ***************
  21. *** 645,651 ****
  22. --- 645,655 ----
  23.           }
  24.           else if (ccline.cmdpos > i)
  25.               cmdline_del(i);
  26. +         /* Now complete in the new directory. Set KeyTyped in case the
  27. +          * Up key came from a mapping. */
  28.           c = p_wc;
  29. +         KeyTyped = TRUE;
  30.           }
  31.       }
  32.   
  33. *** ../vim-7.3.371/src/version.c    2011-12-08 17:49:31.000000000 +0100
  34. --- src/version.c    2011-12-08 18:42:54.000000000 +0100
  35. ***************
  36. *** 716,717 ****
  37. --- 716,719 ----
  38.   {   /* Add new patch number below this line */
  39. + /**/
  40. +     372,
  41.   /**/
  42.  
  43. -- 
  44. hundred-and-one symptoms of being an internet addict:
  45. 255. You work for a newspaper and your editor asks you to write an
  46.      article about Internet addiction...in the "first person."
  47.  
  48.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  49. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  50. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  51.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  52.