mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.0.0956: scrolling in a terminal window has flicker
Problem: Scrolling in a terminal hwindow as flicker when the Normal background differs from the terminal window background. Solution: Set the attribute to clear with.
This commit is contained in:
@@ -1163,7 +1163,7 @@ curs_columns(
|
||||
if (extra > 0)
|
||||
win_ins_lines(curwin, 0, extra, FALSE, FALSE);
|
||||
else if (extra < 0)
|
||||
win_del_lines(curwin, 0, -extra, FALSE, FALSE);
|
||||
win_del_lines(curwin, 0, -extra, FALSE, FALSE, 0);
|
||||
}
|
||||
else
|
||||
curwin->w_skipcol = 0;
|
||||
|
Reference in New Issue
Block a user