]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.105
- new
[packages/vim.git] / 7.0.105
CommitLineData
f3c378e8
AG
1To: vim-dev@vim.org
2Subject: Patch 7.0.105
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.105
11Problem: When using incremental search the statusline ruler isn't updated.
12 (Christoph Koegl)
13Solution: Update the statusline when it contains the ruler.
14Files: src/ex_getln.c
15
16
17*** ../vim-7.0.104/src/ex_getln.c Thu Sep 14 10:25:34 2006
18--- src/ex_getln.c Thu Sep 14 10:42:24 2006
19***************
20*** 1756,1761 ****
21--- 1756,1766 ----
22 end_pos = curwin->w_cursor; /* shutup gcc 4 */
23
24 validate_cursor();
25+ # ifdef FEAT_WINDOWS
26+ /* May redraw the status line to show the cursor position. */
27+ if (p_ru && curwin->w_status_height > 0)
28+ curwin->w_redr_status = TRUE;
29+ # endif
30
31 save_cmdline(&save_ccline);
32 update_screen(SOME_VALID);
33*** ../vim-7.0.104/src/version.c Thu Sep 14 11:07:08 2006
34--- src/version.c Thu Sep 14 11:25:37 2006
35***************
36*** 668,669 ****
37--- 668,671 ----
38 { /* Add new patch number below this line */
39+ /**/
40+ 105,
41 /**/
42
43--
44An indication you must be a manager:
45You feel sorry for Dilbert's boss.
46
47 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
48/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
49\\\ download, build and distribute -- http://www.A-A-P.org ///
50 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.028109 seconds and 4 git commands to generate.