summaryrefslogtreecommitdiffstats
path: root/src/charset.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-09 18:25:23 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-09 18:25:23 +0100
commit49a90792d950c51608d0459ef8699fe921070718 (patch)
treea4f212b416b59ac517fd1b7a0aec9775d0369c31 /src/charset.c
parente428fa04a758cc87ea580c856a796e58e407504b (diff)
patch 9.0.0179: cursor pos wrong with wrapping virtual text in empty linev9.0.0179
Problem: Cursor position wrong with wrapping virtual text in empty line. Solution: Adjust handling of an empty line. (closes #10875)
Diffstat (limited to 'src/charset.c')
-rw-r--r--src/charset.c51
1 files changed, 41 insertions, 10 deletions
diff --git a/src/charset.c b/src/charset.c
index c345f7e2a9..2975cdb194 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -759,6 +759,14 @@ linetabsize_col(int startcol, char_u *s)
init_chartabsize_arg(&cts, curwin, 0, startcol, s, s);
while (*cts.cts_ptr != NUL)
cts.cts_vcol += lbr_chartabsize_adv(&cts);
+#ifdef FEAT_PROP_POPUP
+ if (cts.cts_has_prop_with_text && cts.cts_ptr == cts.cts_line)
+ {
+ // check for virtual text in an empty line
+ (void)lbr_chartabsize_adv(&cts);
+ cts.cts_vcol += cts.cts_cur_text_width;
+ }
+#endif
clear_chartabsize_arg(&cts);
return (int)cts.cts_vcol;
}
@@ -772,16 +780,31 @@ win_linetabsize(win_T *wp, linenr_T lnum, char_u *line, colnr_T len)
chartabsize_T cts;
init_chartabsize_arg(&cts, wp, lnum, 0, line, line);
-#ifdef FEAT_PROP_POPUP
- cts.cts_with_trailing = len == MAXCOL;
-#endif
- for ( ; *cts.cts_ptr != NUL && (len == MAXCOL || cts.cts_ptr < line + len);
- MB_PTR_ADV(cts.cts_ptr))
- cts.cts_vcol += win_lbr_chartabsize(&cts, NULL);
+ win_linetabsize_cts(&cts, len);
clear_chartabsize_arg(&cts);
return (int)cts.cts_vcol;
}
+ void
+win_linetabsize_cts(chartabsize_T *cts, colnr_T len)
+{
+#ifdef FEAT_PROP_POPUP
+ cts->cts_with_trailing = len == MAXCOL;
+#endif
+ for ( ; *cts->cts_ptr != NUL && (len == MAXCOL || cts->cts_ptr < cts->cts_line + len);
+ MB_PTR_ADV(cts->cts_ptr))
+ cts->cts_vcol += win_lbr_chartabsize(cts, NULL);
+#ifdef FEAT_PROP_POPUP
+ // check for a virtual text on an empty line
+ if (cts->cts_has_prop_with_text && *cts->cts_ptr == NUL
+ && cts->cts_ptr == cts->cts_line)
+ {
+ (void)win_lbr_chartabsize(cts, NULL);
+ cts->cts_vcol += cts->cts_cur_text_width;
+ }
+#endif
+}
+
/*
* Return TRUE if 'c' is a normal identifier character:
* Letters and characters from the 'isident' option.
@@ -1128,10 +1151,10 @@ win_lbr_chartabsize(
size = win_chartabsize(wp, s, vcol);
# ifdef FEAT_PROP_POPUP
- if (cts->cts_has_prop_with_text && *line != NUL)
+ if (cts->cts_has_prop_with_text)
{
int tab_size = size;
- int charlen = mb_ptr2len(s);
+ int charlen = *s == NUL ? 1 : mb_ptr2len(s);
int i;
int col = (int)(s - line);
garray_T *gap = &wp->w_buffer->b_textprop_text;
@@ -1412,6 +1435,9 @@ getvcol(
int ts = wp->w_buffer->b_p_ts;
int c;
chartabsize_T cts;
+#ifdef FEAT_PROP_POPUP
+ int on_NUL = FALSE;
+#endif
vcol = 0;
line = ptr = ml_get_buf(wp->w_buffer, pos->lnum, FALSE);
@@ -1512,6 +1538,11 @@ getvcol(
if (*cts.cts_ptr == NUL)
{
incr = 1; // NUL at end of line only takes one column
+#ifdef FEAT_PROP_POPUP
+ if (cts.cts_cur_text_width > 0)
+ incr = cts.cts_cur_text_width;
+ on_NUL = TRUE;
+#endif
break;
}
@@ -1544,8 +1575,8 @@ getvcol(
else
{
#ifdef FEAT_PROP_POPUP
- if ((State & MODE_INSERT) == 0)
- // cursor is after inserted text
+ if ((State & MODE_INSERT) == 0 && !on_NUL)
+ // cursor is after inserted text, unless on the NUL
vcol += cts.cts_cur_text_width;
#endif
*cursor = vcol + head; // cursor at start