|
Karsten Hopp |
ac57d9 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
ac57d9 |
Subject: Patch 7.0.105
|
|
Karsten Hopp |
ac57d9 |
Fcc: outbox
|
|
Karsten Hopp |
ac57d9 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
ac57d9 |
Mime-Version: 1.0
|
|
Karsten Hopp |
ac57d9 |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
ac57d9 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
ac57d9 |
------------
|
|
Karsten Hopp |
ac57d9 |
|
|
Karsten Hopp |
ac57d9 |
Patch 7.0.105
|
|
Karsten Hopp |
ac57d9 |
Problem: When using incremental search the statusline ruler isn't updated.
|
|
Karsten Hopp |
ac57d9 |
(Christoph Koegl)
|
|
Karsten Hopp |
ac57d9 |
Solution: Update the statusline when it contains the ruler.
|
|
Karsten Hopp |
ac57d9 |
Files: src/ex_getln.c
|
|
Karsten Hopp |
ac57d9 |
|
|
Karsten Hopp |
ac57d9 |
|
|
Karsten Hopp |
ac57d9 |
*** ../vim-7.0.104/src/ex_getln.c Thu Sep 14 10:25:34 2006
|
|
Karsten Hopp |
ac57d9 |
--- src/ex_getln.c Thu Sep 14 10:42:24 2006
|
|
Karsten Hopp |
ac57d9 |
***************
|
|
Karsten Hopp |
ac57d9 |
*** 1756,1761 ****
|
|
Karsten Hopp |
ac57d9 |
--- 1756,1766 ----
|
|
Karsten Hopp |
ac57d9 |
end_pos = curwin->w_cursor; /* shutup gcc 4 */
|
|
Karsten Hopp |
ac57d9 |
|
|
Karsten Hopp |
ac57d9 |
validate_cursor();
|
|
Karsten Hopp |
ac57d9 |
+ # ifdef FEAT_WINDOWS
|
|
Karsten Hopp |
ac57d9 |
+ /* May redraw the status line to show the cursor position. */
|
|
Karsten Hopp |
ac57d9 |
+ if (p_ru && curwin->w_status_height > 0)
|
|
Karsten Hopp |
ac57d9 |
+ curwin->w_redr_status = TRUE;
|
|
Karsten Hopp |
ac57d9 |
+ # endif
|
|
Karsten Hopp |
ac57d9 |
|
|
Karsten Hopp |
ac57d9 |
save_cmdline(&save_ccline);
|
|
Karsten Hopp |
ac57d9 |
update_screen(SOME_VALID);
|
|
Karsten Hopp |
ac57d9 |
*** ../vim-7.0.104/src/version.c Thu Sep 14 11:07:08 2006
|
|
Karsten Hopp |
ac57d9 |
--- src/version.c Thu Sep 14 11:25:37 2006
|
|
Karsten Hopp |
ac57d9 |
***************
|
|
Karsten Hopp |
ac57d9 |
*** 668,669 ****
|
|
Karsten Hopp |
ac57d9 |
--- 668,671 ----
|
|
Karsten Hopp |
ac57d9 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
ac57d9 |
+ /**/
|
|
Karsten Hopp |
ac57d9 |
+ 105,
|
|
Karsten Hopp |
ac57d9 |
/**/
|
|
Karsten Hopp |
ac57d9 |
|
|
Karsten Hopp |
ac57d9 |
--
|
|
Karsten Hopp |
ac57d9 |
An indication you must be a manager:
|
|
Karsten Hopp |
ac57d9 |
You feel sorry for Dilbert's boss.
|
|
Karsten Hopp |
ac57d9 |
|
|
Karsten Hopp |
ac57d9 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
ac57d9 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
ac57d9 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
ac57d9 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|