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.189 < prev    next >
Encoding:
Internet Message Format  |  2002-02-04  |  1.6 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.189
  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.189
  11. Problem:    The size of the Visual area isn't always displayed when scrolling
  12.             ('ruler' off, 'showcmd' on).  Also not when using a search
  13.             command. (Sylvain Hitier)
  14. Solution:   Redisplay the size of the selection after showing the mode.
  15. Files:      src/screen.c
  16.  
  17.  
  18. *** ../vim60.188/src/screen.c    Thu Jan 24 13:47:03 2002
  19. --- src/screen.c    Tue Feb  5 22:16:36 2002
  20. ***************
  21. *** 7523,7528 ****
  22. --- 7526,7537 ----
  23.       msg_clr_cmdline();        /* will reset clear_cmdline */
  24.   
  25.   #ifdef FEAT_CMDL_INFO
  26. + # ifdef FEAT_VISUAL
  27. +     /* In Visual mode the size of the selected area must be redrawn. */
  28. +     if (VIsual_active)
  29. +     clear_showcmd();
  30. + # endif
  31.       /* If the last window has no status line, the ruler is after the mode
  32.        * message and must be redrawn */
  33.   # ifdef FEAT_WINDOWS
  34. *** ../vim60.188/src/version.c    Tue Feb  5 21:59:55 2002
  35. --- src/version.c    Tue Feb  5 22:21:32 2002
  36. ***************
  37. *** 608,609 ****
  38. --- 608,611 ----
  39.   {   /* Add new patch number below this line */
  40. + /**/
  41. +     189,
  42.   /**/
  43.  
  44. -- 
  45. hundred-and-one symptoms of being an internet addict:
  46. 236. You start saving URL's in your digital watch.
  47.  
  48.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  49. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  50.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  51.