mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 10:26:31 +00:00
vim-patch:9.0.0734: cursor position invalid when scrolling with 'smoothscroll'
Problem: Cursor position invalid when scrolling with 'smoothscroll' set.
(Ernie Rael)
Solution: Add w_valid_skipcol and clear flags when it changes. Adjust
w_skipcol after moving the cursor.
2fbabd238a
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -1223,6 +1223,7 @@ struct window_S {
|
||||
int w_valid;
|
||||
pos_T w_valid_cursor; // last known position of w_cursor, used to adjust w_valid
|
||||
colnr_T w_valid_leftcol; // last known w_leftcol
|
||||
colnr_T w_valid_skipcol; // last known w_skipcol
|
||||
|
||||
bool w_viewport_invalid;
|
||||
linenr_T w_viewport_last_topline; // topline when the viewport was last updated
|
||||
|
Reference in New Issue
Block a user