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.197 < prev    next >
Encoding:
Internet Message Format  |  2002-02-06  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.197
  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.0.197
  11. Problem:    When 'virtualedit' is set and 'selection' is "exclusive", "v$x"
  12.         doesn't delete the last character in the line. (Eric Long)
  13. Solution:   Don't reset the inclusive flag. (Helmut Stiegler)
  14. Files:        src/normal.c
  15.  
  16.  
  17. *** ../vim60.196/src/normal.c    Thu Feb  7 12:41:51 2002
  18. --- src/normal.c    Thu Feb  7 12:45:34 2002
  19. ***************
  20. *** 1539,1546 ****
  21.            */
  22.           if (oap->motion_force == NUL || oap->motion_type == MLINE)
  23.           oap->inclusive = TRUE;
  24. -         if (virtual_active() && curwin->w_curswant == MAXCOL)
  25. -         oap->inclusive = FALSE;
  26.           if (VIsual_mode == 'V')
  27.           oap->motion_type = MLINE;
  28.           else
  29. --- 1539,1544 ----
  30. *** ../vim60.196/src/version.c    Thu Feb  7 12:41:51 2002
  31. --- src/version.c    Thu Feb  7 12:47:23 2002
  32. ***************
  33. *** 608,609 ****
  34. --- 608,611 ----
  35.   {   /* Add new patch number below this line */
  36. + /**/
  37. +     197,
  38.   /**/
  39.  
  40. -- 
  41. ARTHUR: This new learning amazes me, Sir Bedevere.  Explain again how sheep's
  42.         bladders may be employed to prevent earthquakes.
  43.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  44.  
  45.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  46. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  47.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  48.