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.0.008 < prev    next >
Encoding:
Internet Message Format  |  2001-09-28  |  1.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.008
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. ------------
  6.  
  7. Patch 6.0.008
  8. Problem:    'imdisable' is missing from the options window. (Michael Naumann)
  9. Solution:   Add an entry for it.
  10. Files:        runtime/optwin.vim
  11.  
  12.  
  13. *** ../vim60.7/runtime/optwin.vim    Sun Sep  2 14:36:59 2001
  14. --- runtime/optwin.vim    Sat Sep 29 15:19:31 2001
  15. ***************
  16. *** 1,7 ****
  17.   " These commands create the option window.
  18.   "
  19.   " Maintainer:    Bram Moolenaar <Bram@vim.org>
  20. ! " Last Change:    2001 Sep 02
  21.   
  22.   " If there already is an option window, jump to that one.
  23.   if bufwinnr("option-window") > 0
  24. --- 1,7 ----
  25.   " These commands create the option window.
  26.   "
  27.   " Maintainer:    Bram Moolenaar <Bram@vim.org>
  28. ! " Last Change:    2001 Sep 29
  29.   
  30.   " If there already is an option window, jump to that one.
  31.   if bufwinnr("option-window") > 0
  32. ***************
  33. *** 1003,1008 ****
  34. --- 1003,1012 ----
  35.   if has("langmap")
  36.     call append("$", "langmap\ttranslate characters for Normal mode")
  37.     call <SID>OptionG("lmap", &lmap)
  38. + endif
  39. + if has("xim")
  40. +   call append("$", "imdisable\twhen set never use IM; overrules following IM options")
  41. +   call <SID>BinOptionG("imd", &imd)
  42.   endif
  43.   call append("$", "iminsert\tin Insert mode: 1: use :lmap; 2: use IM; 0: neither")
  44.   call append("$", "\t(local to window)")
  45. *** ../vim60.7/src/version.c    Sat Sep 29 10:20:07 2001
  46. --- src/version.c    Sat Sep 29 15:22:54 2001
  47. ***************
  48. *** 608,609 ****
  49. --- 608,611 ----
  50.   {   /* Add new patch number below this line */
  51. + /**/
  52. +     8,
  53.   /**/
  54.  
  55. -- 
  56. Never go to the toilet in a paperless office.
  57.  
  58.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  59. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  60.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  61.