]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.136
- updated to 0.7.3
[packages/vim.git] / 7.0.136
CommitLineData
f3c378e8
AG
1To: vim-dev@vim.org
2Subject: Patch 7.0.136
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.0.136
11Problem: Using "O" while matching parens are highlighted may not remove the
12 highlighting. (Ilya Bobir)
13Solution: Also trigger CursorMoved when a line is inserted under the cursor.
14Files: 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--
48hundred-and-one symptoms of being an internet addict:
4946. 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 ///
This page took 0.055597 seconds and 4 git commands to generate.