summaryrefslogtreecommitdiff
path: root/src/drawline.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-08-05 21:39:30 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-05 21:39:30 +0100
commit3ec3b8e92da8299bcbfd851fa76fccf5403e4097 (patch)
tree83728edfb8f4190da1fd69c6c77e6ba2a6121b1e /src/drawline.c
parent50e75fe8d8c8ab262ab5b11d1498e5628044e07c (diff)
downloadvim-git-3ec3b8e92da8299bcbfd851fa76fccf5403e4097.tar.gz
patch 9.0.0148: a "below" aligned text property gets 'showbreak' displayedv9.0.0148
Problem: A "below" aligned text property gets 'showbreak' displayed. Solution: Do not use 'showbreak' before or in virtual text. (issue #10851)
Diffstat (limited to 'src/drawline.c')
-rw-r--r--src/drawline.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/drawline.c b/src/drawline.c
index 47b8cdc94..9e03b38a7 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -392,6 +392,7 @@ win_line(
#ifdef FEAT_LINEBREAK
int need_showbreak = FALSE; // overlong line, skipping first x
// chars
+ int dont_use_showbreak = FALSE; // do not use 'showbreak'
#endif
#if defined(FEAT_SIGNS) || defined(FEAT_QUICKFIX) \
|| defined(FEAT_SYN_HL) || defined(FEAT_DIFF)
@@ -1567,7 +1568,15 @@ win_line(
if (*ptr == NUL)
// don't combine char attr after EOL
text_prop_flags &= ~PT_FLAG_COMBINE;
-
+#ifdef FEAT_LINEBREAK
+ if (below || right)
+ {
+ // no 'showbreak' before "below" text property
+ // or after "right" text property
+ need_showbreak = FALSE;
+ dont_use_showbreak = TRUE;
+ }
+#endif
// Keep in sync with where
// textprop_size_after_trunc() is called in
// win_lbr_chartabsize().
@@ -3441,9 +3450,11 @@ win_line(
n_extra = 0;
lcs_prec_todo = wp->w_lcs_chars.prec;
#ifdef FEAT_LINEBREAK
+ if (!dont_use_showbreak
# ifdef FEAT_DIFF
- if (filler_todo <= 0)
+ && filler_todo <= 0
# endif
+ )
need_showbreak = TRUE;
#endif
#ifdef FEAT_DIFF