summaryrefslogtreecommitdiffstats
path: root/src/drawline.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-09-20 17:57:53 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-20 17:57:53 +0100
commitb84d565c623c00ca40bb4c1269a6860f780dda09 (patch)
tree5c18d1906e5a916f306738b89187c6c12e23d773 /src/drawline.c
parent320d910064320f894a09ffdd1cd800ff5371e97f (diff)
patch 9.0.0518: virtual text highlight starts too early with 'nowrap'v9.0.0518
Problem: Virtual text highlight starts too early with 'nowrap' and 'number' set. Solution: Add the offset to the attribute skip count. (issue #11138)
Diffstat (limited to 'src/drawline.c')
-rw-r--r--src/drawline.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/drawline.c b/src/drawline.c
index 0c6b9abcf7..b0980e58c2 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -335,7 +335,6 @@ text_prop_position(
int padding = tp->tp_col == MAXCOL && tp->tp_len > 1
? tp->tp_len - 1 : 0;
int col_with_padding = vcol + (below ? 0 : padding);
- int col_off = 0;
int room = wp->w_width - col_with_padding;
int before = room; // spaces before the text
int after = 0; // spaces after the text
@@ -347,6 +346,9 @@ text_prop_position(
if (wrap || right || above || below || padding > 0 || n_used < *n_extra)
{
+ int col_off = win_col_off(wp) + win_col_off2(wp);
+ int skip_add = 0;
+
if (above)
{
before = 0;
@@ -366,19 +368,19 @@ text_prop_position(
if (right && (wrap || room < PROP_TEXT_MIN_CELLS))
{
// right-align on next line instead of wrapping if possible
- col_off = win_col_off(wp) + win_col_off2(wp);
before = wp->w_width - col_off - strsize + room;
if (before < 0)
before = 0;
else
n_used = *n_extra;
+ skip_add = col_off;
}
else
before = 0;
}
else if (below && before > 0)
// include 'number' column et al.
- col_off = win_col_off(wp) + win_col_off2(wp);
+ skip_add = col_off;
}
// With 'nowrap' add one to show the "extends" character if needed (it
@@ -388,6 +390,8 @@ text_prop_position(
&& wp->w_lcs_chars.ext != NUL
&& wp->w_p_list)
++n_used;
+ if (!wp->w_p_wrap && below && padding > 0)
+ skip_add = col_off;
// add 1 for NUL, 2 for when '…' is used
if (n_attr != NULL)
@@ -441,7 +445,7 @@ text_prop_position(
*n_attr = mb_charlen(*p_extra);
if (above)
*n_attr -= padding + after;
- *n_attr_skip = before + padding + col_off;
+ *n_attr_skip = before + padding + skip_add;
}
}
}