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.931 < prev    next >
Encoding:
Internet Message Format  |  2013-05-06  |  1.9 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.931
  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.931
  11. Problem:    No completion for :xmap and :smap. (Yukihiro Nakadaira)
  12. Solution:   Add the case statements. (Christian Brabandt)
  13. Files:        src/ex_docmd.c
  14.  
  15.  
  16. *** ../vim-7.3.930/src/ex_docmd.c    2013-05-06 04:21:35.000000000 +0200
  17. --- src/ex_docmd.c    2013-05-07 05:15:26.000000000 +0200
  18. ***************
  19. *** 3889,3894 ****
  20. --- 3889,3896 ----
  21.       case CMD_imap:        case CMD_inoremap:
  22.       case CMD_cmap:        case CMD_cnoremap:
  23.       case CMD_lmap:        case CMD_lnoremap:
  24. +     case CMD_smap:        case CMD_snoremap:
  25. +     case CMD_xmap:        case CMD_xnoremap:
  26.           return set_context_in_map_cmd(xp, cmd, arg, forceit,
  27.                                FALSE, FALSE, ea.cmdidx);
  28.       case CMD_unmap:
  29. ***************
  30. *** 3898,3903 ****
  31. --- 3900,3907 ----
  32.       case CMD_iunmap:
  33.       case CMD_cunmap:
  34.       case CMD_lunmap:
  35. +     case CMD_sunmap:
  36. +     case CMD_xunmap:
  37.           return set_context_in_map_cmd(xp, cmd, arg, forceit,
  38.                                 FALSE, TRUE, ea.cmdidx);
  39.       case CMD_abbreviate:    case CMD_noreabbrev:
  40. *** ../vim-7.3.930/src/version.c    2013-05-07 05:11:12.000000000 +0200
  41. --- src/version.c    2013-05-07 05:16:45.000000000 +0200
  42. ***************
  43. *** 730,731 ****
  44. --- 730,733 ----
  45.   {   /* Add new patch number below this line */
  46. + /**/
  47. +     931,
  48.   /**/
  49.  
  50. -- 
  51. FIRST HEAD: All right! All right! We'll kill him first and then have tea and
  52.             biscuits.
  53.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  54.  
  55.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  56. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  57. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  58.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  59.