0
0
mirror of https://github.com/vim/vim.git synced 2025-09-29 04:34:16 -04:00

patch 9.0.0304: WinScrolled is not triggered when only skipcol changes

Problem:    WinScrolled is not triggered when only skipcol changes.
Solution:   Add w_last_skipcol and use it. (closes #10998)
This commit is contained in:
zeertzjq
2022-08-28 19:16:15 +01:00
committed by Bram Moolenaar
parent 2f892d8663
commit 670ab0334b
5 changed files with 40 additions and 1 deletions

View File

@@ -1249,6 +1249,7 @@ do_autocmd_event(
{
curwin->w_last_topline = curwin->w_topline;
curwin->w_last_leftcol = curwin->w_leftcol;
curwin->w_last_skipcol = curwin->w_skipcol;
curwin->w_last_width = curwin->w_width;
curwin->w_last_height = curwin->w_height;
}