]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.119
- updated to 1.15
[packages/vim.git] / 7.0.119
CommitLineData
f3c378e8
AG
1To: vim-dev@vim.org
2Subject: Patch 7.0.119
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.119
11Problem: When going back from Insert to Normal mode the CursorHold event
12 doesn't trigger. (Yakov Lerner)
13Solution: Reset "did_cursorhold" when leaving Insert mode.
14Files: src/edit.c
15
16
17*** ../vim-7.0.118/src/edit.c Tue Oct 3 15:49:20 2006
18--- src/edit.c Thu Oct 5 22:26:27 2006
19***************
20*** 923,928 ****
21--- 923,929 ----
22 if (cmdchar != 'r' && cmdchar != 'v')
23 apply_autocmds(EVENT_INSERTLEAVE, NULL, NULL,
24 FALSE, curbuf);
25+ did_cursorhold = FALSE;
26 #endif
27 return (c == Ctrl_O);
28 }
29*** ../vim-7.0.118/src/version.c Tue Oct 3 17:21:04 2006
30--- src/version.c Fri Oct 6 20:35:45 2006
31***************
32*** 668,669 ****
33--- 668,671 ----
34 { /* Add new patch number below this line */
35+ /**/
36+ 119,
37 /**/
38
39--
40The Feynman problem solving Algorithm:
41 1) Write down the problem
42 2) Think real hard
43 3) Write down the answer
44
45 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
46/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
47\\\ download, build and distribute -- http://www.A-A-P.org ///
48 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.027651 seconds and 4 git commands to generate.