summaryrefslogtreecommitdiffstats
path: root/src/drawline.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-12-28 23:19:52 +0100
committerChristian Brabandt <cb@256bit.org>2023-12-28 23:19:52 +0100
commit7e4f62a2575e8ce9ebb842d4246288138b11dff3 (patch)
tree3d53a3bf8a46c6d13308f69c2b1aa9c23cb72758 /src/drawline.c
parent715a8058895f5908f44ee243fdafa431b6483e47 (diff)
patch 9.0.2189: Wrong display with 'briopt=sbr' and 'nobreakindent'v9.0.2189
Problem: Wrong display when 'breakindentopt' contains "sbr" and 'showbreak' and 'nobreakindent' are set. Solution: Always reset wlv->need_showbreak regardless of the values of 'breakindent' and 'showbreak', as they aren't checked when setting wlv->need_showbreak (zeertzjq) closes: #13785 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/drawline.c')
-rw-r--r--src/drawline.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/drawline.c b/src/drawline.c
index 08b6f45c44..7bbe86de0f 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -524,9 +524,6 @@ handle_breakindent(win_T *wp, winlinevars_T *wlv)
if (wlv->n_extra < 0)
wlv->n_extra = 0;
}
- if (wp->w_skipcol > 0 && wlv->startrow == 0
- && wp->w_p_wrap && wp->w_briopt_sbr)
- wlv->need_showbreak = FALSE;
// Correct start of highlighted area for 'breakindent',
if (wlv->fromcol >= wlv->vcol
@@ -538,6 +535,10 @@ handle_breakindent(win_T *wp, winlinevars_T *wlv)
if (wlv->tocol == wlv->vcol)
wlv->tocol += wlv->n_extra;
}
+
+ if (wp->w_skipcol > 0 && wlv->startrow == 0 && wp->w_p_wrap
+ && wp->w_briopt_sbr)
+ wlv->need_showbreak = FALSE;
}
}
#endif
@@ -579,8 +580,6 @@ handle_showbreak_and_filler(win_T *wp, winlinevars_T *wlv)
wlv->c_extra = NUL;
wlv->c_final = NUL;
wlv->n_extra = (int)STRLEN(sbr);
- if (wp->w_skipcol == 0 || wlv->startrow != 0 || !wp->w_p_wrap)
- wlv->need_showbreak = FALSE;
wlv->vcol_sbr = wlv->vcol + MB_CHARLEN(sbr);
// Correct start of highlighted area for 'showbreak'.
@@ -599,6 +598,10 @@ handle_showbreak_and_filler(win_T *wp, winlinevars_T *wlv)
wlv->char_attr = hl_combine_attr(wlv->char_attr, wlv->cul_attr);
# endif
}
+
+ if (wp->w_skipcol == 0 || wlv->startrow > 0 || !wp->w_p_wrap
+ || !wp->w_briopt_sbr)
+ wlv->need_showbreak = FALSE;
# endif
}
#endif