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.138 < prev    next >
Encoding:
Internet Message Format  |  2002-07-20  |  2.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.138
  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.138 (depends on 6.1.126)
  11. Problem:    Adding extra items to the Syntax menu can't be done when the "Show
  12.         individual choices" menu is used.
  13. Solution:   Use ":runtime!" instead of ":source", so that all synmenu.vim
  14.         files in the runtime path are loaded. (Servatius Brandt)
  15.         Also fix that a translated menu can't be removed.
  16. Files:        runtime/menu.vim
  17.  
  18.  
  19. *** ../vim61.137/runtime/menu.vim    Tue Jul  9 21:50:11 2002
  20. --- runtime/menu.vim    Sat Jul 13 14:02:03 2002
  21. ***************
  22. *** 2,8 ****
  23.   " You can also use this as a start for your own set of menus.
  24.   "
  25.   " Maintainer:    Bram Moolenaar <Bram@vim.org>
  26. ! " Last Change:    2002 Jul 09
  27.   
  28.   " Note that ":an" (short for ":anoremenu") is often used to make a menu work
  29.   " in all modes and avoid side effects from mappings defined by the user.
  30. --- 2,8 ----
  31.   " You can also use this as a start for your own set of menus.
  32.   "
  33.   " Maintainer:    Bram Moolenaar <Bram@vim.org>
  34. ! " Last Change:    2002 Jul 13
  35.   
  36.   " Note that ":an" (short for ":anoremenu") is often used to make a menu work
  37.   " in all modes and avoid side effects from mappings defined by the user.
  38. ***************
  39. *** 928,936 ****
  40.   " Skip setting up the individual syntax selection menus unless
  41.   " do_syntax_sel_menu is defined (it takes quite a bit of time).
  42.   if exists("do_syntax_sel_menu")
  43. !   so $VIMRUNTIME/synmenu.vim
  44.   else
  45. !   an 50.10 &Syntax.Show\ individual\ choices    :let do_syntax_sel_menu = 1<Bar>so $VIMRUNTIME/synmenu.vim<Bar>aunmenu Syntax.Show\ individual\ choices<CR>
  46.     an 50.195 &Syntax.-SEP1-        <Nop>
  47.   endif
  48.   
  49. --- 928,936 ----
  50.   " Skip setting up the individual syntax selection menus unless
  51.   " do_syntax_sel_menu is defined (it takes quite a bit of time).
  52.   if exists("do_syntax_sel_menu")
  53. !   runtime! synmenu.vim
  54.   else
  55. !   an 50.10 &Syntax.&Show\ individual\ choices    :let do_syntax_sel_menu = 1<Bar>runtime! synmenu.vim<Bar>aunmenu &Syntax.&Show\ individual\ choices<CR>
  56.     an 50.195 &Syntax.-SEP1-        <Nop>
  57.   endif
  58.   
  59. *** ../vim61.137/src/version.c    Sun Jul 21 21:20:59 2002
  60. --- src/version.c    Sun Jul 21 21:23:05 2002
  61. ***************
  62. *** 608,609 ****
  63. --- 608,611 ----
  64.   {   /* Add new patch number below this line */
  65. + /**/
  66. +     138,
  67.   /**/
  68.  
  69. -- 
  70. hundred-and-one symptoms of being an internet addict:
  71. 19. All of your friends have an @ in their names.
  72.  
  73.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  74. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  75. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  76.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  77.