1
0
forked from aniani/vim

patch 7.4.961

Problem:    Test107 fails in some circunstances.
Solution:   When using "zt", "zb" and "z=" recompute the fraction.
This commit is contained in:
Bram Moolenaar
2015-12-05 19:47:04 +01:00
parent 90f5d0a5c3
commit 9dc2ce398b
4 changed files with 7 additions and 2 deletions

View File

@@ -4880,6 +4880,7 @@ dozet:
case 't': scroll_cursor_top(0, TRUE);
redraw_later(VALID);
set_fraction(curwin);
break;
/* "z." and "zz": put cursor in middle of screen */
@@ -4888,6 +4889,7 @@ dozet:
case 'z': scroll_cursor_halfway(TRUE);
redraw_later(VALID);
set_fraction(curwin);
break;
/* "z^", "z-" and "zb": put cursor at bottom of screen */
@@ -4910,6 +4912,7 @@ dozet:
case 'b': scroll_cursor_bot(0, TRUE);
redraw_later(VALID);
set_fraction(curwin);
break;
/* "zH" - scroll screen right half-page */