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.4 / 7.4.121 < prev    next >
Encoding:
Internet Message Format  |  2013-12-10  |  1.4 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.121
  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.4.121
  11. Problem:    Completion doesn't work for ":py3d" and ":py3f". (Bohr Shaw)
  12. Solution:   Skip over letters after ":py3".
  13. Files:        src/ex_docmd.c
  14.  
  15.  
  16. *** ../vim-7.4.120/src/ex_docmd.c    2013-11-21 14:21:25.000000000 +0100
  17. --- src/ex_docmd.c    2013-12-11 17:41:50.000000000 +0100
  18. ***************
  19. *** 3261,3267 ****
  20. --- 3261,3271 ----
  21.           ++p;
  22.       /* for python 3.x: ":py3*" commands completion */
  23.       if (cmd[0] == 'p' && cmd[1] == 'y' && p == cmd + 2 && *p == '3')
  24. +     {
  25.           ++p;
  26. +         while (ASCII_ISALPHA(*p) || *p == '*')
  27. +         ++p;
  28. +     }
  29.       len = (int)(p - cmd);
  30.   
  31.       if (len == 0)
  32. *** ../vim-7.4.120/src/version.c    2013-12-11 17:20:14.000000000 +0100
  33. --- src/version.c    2013-12-11 17:43:44.000000000 +0100
  34. ***************
  35. *** 740,741 ****
  36. --- 740,743 ----
  37.   {   /* Add new patch number below this line */
  38. + /**/
  39. +     121,
  40.   /**/
  41.  
  42. -- 
  43. It was recently discovered that research causes cancer in rats.
  44.  
  45.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  46. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  47. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  48.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  49.