diff src/move.c @ 23905:68f506771741 v8.2.2495

patch 8.2.2495: text jumps up and down when moving the cursor Commit: https://github.com/vim/vim/commit/8f33ebfade10cd1b4296d8ec8dca815a09e8a405 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 10 21:10:12 2021 +0100 patch 8.2.2495: text jumps up and down when moving the cursor Problem: Text jumps up and down when moving the cursor in a small window with wrapping text and 'scrolloff' set. Solution: Adjust the computation of w_skipcol. (partly by Ghjuvan Lacambre, closes #7813)
author Bram Moolenaar <Bram@vim.org>
date Wed, 10 Feb 2021 21:15:04 +0100
parents 90ea5037a7e3
children 406ab8d0bc0f
line wrap: on
line diff
--- a/src/move.c
+++ b/src/move.c
@@ -1125,10 +1125,10 @@ curs_columns(
 	    n = curwin->w_wrow + so;
 	else
 	    n = p_lines;
-	if ((colnr_T)n >= curwin->w_height + curwin->w_skipcol / width)
+	if ((colnr_T)n >= curwin->w_height + curwin->w_skipcol / width - so)
 	    extra += 2;
 
-	if (extra == 3 || p_lines < so * 2)
+	if (extra == 3 || p_lines <= so * 2)
 	{
 	    // not enough room for 'scrolloff', put cursor in the middle
 	    n = curwin->w_virtcol / width;