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.101 < prev    next >
Encoding:
Internet Message Format  |  2002-06-22  |  3.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.101
  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.101
  11. Problem:    After using ":options" the tabstop of a new window is 15.  Entry
  12.         in ":options" window for 'autowriteall' is wrong. (Antoine J
  13.         Mechelynck)  Can't insert a space in an option value.
  14. Solution:   Use ":setlocal" instead of ":set".  Change "aw" to "awa".
  15.         Don't map space in Insert mode.
  16. Files:        runtime/optwin.vim
  17.  
  18.  
  19. *** ../vim61.100/runtime/optwin.vim    Thu Dec 13 14:38:45 2001
  20. --- runtime/optwin.vim    Sat Jun 22 12:09:51 2002
  21. ***************
  22. *** 1,7 ****
  23.   " These commands create the option window.
  24.   "
  25.   " Maintainer:    Bram Moolenaar <Bram@vim.org>
  26. ! " Last Change:    2001 Dec 13
  27.   
  28.   " If there already is an option window, jump to that one.
  29.   if bufwinnr("option-window") > 0
  30. --- 1,7 ----
  31.   " These commands create the option window.
  32.   "
  33.   " Maintainer:    Bram Moolenaar <Bram@vim.org>
  34. ! " Last Change:    2002 Jun 22
  35.   
  36.   " If there already is an option window, jump to that one.
  37.   if bufwinnr("option-window") > 0
  38. ***************
  39. *** 147,153 ****
  40.   
  41.   " Open the window
  42.   new option-window
  43. ! set ts=15 tw=0
  44.   
  45.   " Insert help and a "set" command for each option.
  46.   call append(0, '" Each "set" line shows the current value of an option (on the left).')
  47. --- 147,153 ----
  48.   
  49.   " Open the window
  50.   new option-window
  51. ! setlocal ts=15 tw=0
  52.   
  53.   " Insert help and a "set" command for each option.
  54.   call append(0, '" Each "set" line shows the current value of an option (on the left).')
  55. ***************
  56. *** 832,838 ****
  57.   call append("$", "autowrite\tautomatically write a file when leaving a modified buffer")
  58.   call <SID>BinOptionG("aw", &aw)
  59.   call append("$", "autowriteall\tas 'autowrite', but works with more commands")
  60. ! call <SID>BinOptionG("aw", &aw)
  61.   call append("$", "writeany\talways write without asking for confirmation")
  62.   call <SID>BinOptionG("wa", &wa)
  63.   call append("$", "autoread\tautomatically read a file when it was modified outside of Vim")
  64. --- 835,841 ----
  65.   call append("$", "autowrite\tautomatically write a file when leaving a modified buffer")
  66.   call <SID>BinOptionG("aw", &aw)
  67.   call append("$", "autowriteall\tas 'autowrite', but works with more commands")
  68. ! call <SID>BinOptionG("awa", &awa)
  69.   call append("$", "writeany\talways write without asking for confirmation")
  70.   call <SID>BinOptionG("wa", &wa)
  71.   call append("$", "autoread\tautomatically read a file when it was modified outside of Vim")
  72. ***************
  73. *** 1117,1123 ****
  74.   noremap <silent> <buffer> <CR> <C-\><C-N>:call <SID>CR()<CR>
  75.   inoremap <silent> <buffer> <CR> <Esc>:call <SID>CR()<CR>
  76.   noremap <silent> <buffer> <Space> :call <SID>Space()<CR>
  77. - inoremap <silent> <buffer> <Space> <Esc>:call <SID>Space()<CR>
  78.   
  79.   " Make the buffer be deleted when the window is closed.
  80.   set buftype=nofile bufhidden=delete noswapfile
  81. --- 1120,1125 ----
  82. *** ../vim61.100/src/version.c    Tue Jun 18 21:36:39 2002
  83. --- src/version.c    Sun Jun 23 12:44:42 2002
  84. ***************
  85. *** 608,609 ****
  86. --- 608,611 ----
  87.   {   /* Add new patch number below this line */
  88. + /**/
  89. +     101,
  90.   /**/
  91.  
  92. -- 
  93. FIRST HEAD: All right! All right! We'll kill him first and then have tea and
  94.             biscuits.
  95.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  96.  
  97.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  98. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  99. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  100.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  101.