diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-09-17 17:15:33 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-09-17 17:15:33 +0100 |
commit | 4c7fd4d68f69b4e420a5448f144f4d57eda22f8c (patch) | |
tree | 3d2cc4e9f44d15e057e73ca9d09d59e306f94130 /src/charset.c | |
parent | acd6b9976bd939035025a16ceb4213a680827927 (diff) | |
download | vim-git-4c7fd4d68f69b4e420a5448f144f4d57eda22f8c.tar.gz |
patch 9.0.0488: cursor wrong with virtual text "above" and 'showbreak'v9.0.0488
Problem: Cursor in wrong position with virtual text "above" and
'showbreak'.
Solution: Take the first character column into account. (closes #11149)
Diffstat (limited to 'src/charset.c')
-rw-r--r-- | src/charset.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/charset.c b/src/charset.c index c5edaf41e..9ddb21d96 100644 --- a/src/charset.c +++ b/src/charset.c @@ -1280,6 +1280,9 @@ win_lbr_chartabsize( numberextra = numberwidth; vcol += numberextra + mb_added; +#ifdef FEAT_PROP_POPUP + vcol -= wp->w_virtcol_first_char; +#endif if (vcol >= (colnr_T)wp->w_width) { vcol -= wp->w_width; |