diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-18 15:00:03 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-08-18 19:34:16 +0800 |
commit | 551998b7eed7dd411e4d14f65b108ae8a93c4081 (patch) | |
tree | 3121aa578a285678a58e2dbd1ed578750a284d95 /src/nvim/grid.h | |
parent | b0dda500e9b45e39e872d76e8b753933c5467f83 (diff) | |
download | rneovim-551998b7eed7dd411e4d14f65b108ae8a93c4081.tar.gz rneovim-551998b7eed7dd411e4d14f65b108ae8a93c4081.tar.bz2 rneovim-551998b7eed7dd411e4d14f65b108ae8a93c4081.zip |
vim-patch:9.0.1725: cursor pos wrong after concealed text with 'virtualedit'
Problem: Wrong cursor position when clicking after concealed text
with 'virtualedit'.
Solution: Store virtual columns in ScreenCols[] instead of text
columns, and always use coladvance() when clicking.
This also fixes incorrect curswant when clicking on a TAB, so now
Test_normal_click_on_ctrl_char() asserts the same results as the ones
before patch 9.0.0048.
closes: vim/vim#12808
https://github.com/vim/vim/commit/e500ae8e29ad921378085f5d70ee5c0c537be1ba
Remove the mouse_adjust_click() function.
There is a difference in behavior with the old mouse_adjust_click()
approach: when clicking on the character immediately after concealed
text that is completely hidden, cursor is put on the clicked character
rather than at the start of the concealed text. The new behavior is
better, but it causes unnecessary scrolling in a functional test (which
is an existing issue unrelated to these patches), so adjust the test.
Now fully merged:
vim-patch:9.0.0177: cursor position wrong with 'virtualedit' and mouse click
Diffstat (limited to 'src/nvim/grid.h')
-rw-r--r-- | src/nvim/grid.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/grid.h b/src/nvim/grid.h index deb3d3785d..0db97345d1 100644 --- a/src/nvim/grid.h +++ b/src/nvim/grid.h @@ -27,6 +27,7 @@ EXTERN bool resizing_screen INIT(= 0); EXTERN schar_T *linebuf_char INIT(= NULL); EXTERN sattr_T *linebuf_attr INIT(= NULL); +EXTERN colnr_T *linebuf_vcol INIT(= NULL); // Low-level functions to manipulate individual character cells on the // screen grid. |