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 / 7.0 / 7.0.136 < prev    next >
Encoding:
Internet Message Format  |  2006-10-16  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.0.136
  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 7.0.136
  11. Problem:    Using "O" while matching parens are highlighted may not remove the
  12.         highlighting. (Ilya Bobir)
  13. Solution:   Also trigger CursorMoved when a line is inserted under the cursor.
  14. Files:        src/misc1.c
  15.  
  16.  
  17. *** ../vim-7.0.135/src/misc1.c    Fri Sep 15 20:17:49 2006
  18. --- src/misc1.c    Tue Oct 17 11:11:42 2006
  19. ***************
  20. *** 2842,2848 ****
  21.   
  22.   #ifdef FEAT_AUTOCMD
  23.       /* when the cursor line is changed always trigger CursorMoved */
  24. !     if (lnum <= curwin->w_cursor.lnum && lnume > curwin->w_cursor.lnum)
  25.       last_cursormoved.lnum = 0;
  26.   #endif
  27.   }
  28. --- 2842,2849 ----
  29.   
  30.   #ifdef FEAT_AUTOCMD
  31.       /* when the cursor line is changed always trigger CursorMoved */
  32. !     if (lnum <= curwin->w_cursor.lnum
  33. !          && lnume + (xtra < 0 ? -xtra : xtra) > curwin->w_cursor.lnum)
  34.       last_cursormoved.lnum = 0;
  35.   #endif
  36.   }
  37. *** ../vim-7.0.135/src/version.c    Sun Oct 15 22:38:41 2006
  38. --- src/version.c    Tue Oct 17 11:10:21 2006
  39. ***************
  40. *** 668,669 ****
  41. --- 668,671 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     136,
  45.   /**/
  46.  
  47. -- 
  48. hundred-and-one symptoms of being an internet addict:
  49. 46. Your wife makes a new rule: "The computer cannot come to bed."
  50.  
  51.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  52. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  53. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  54.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  55.