summaryrefslogtreecommitdiffstats
path: root/src/drawline.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-05-16 14:07:39 +0200
committerBram Moolenaar <Bram@vim.org>2020-05-16 14:07:39 +0200
commite882f7a73c8fa48707de71035eb0a7ccc6ac8548 (patch)
tree13145a03679860e11cf224731d2d8ddbb93eac07 /src/drawline.c
parentfd615a3c901f59abddca27c6a09940be552c0f4d (diff)
patch 8.2.0766: display error when using 'number' and 'breakindent'v8.2.0766
Problem: Display error when using 'number' and 'breakindent'. Solution: Adjust extra spaces in the first row. (Ken Takata, closes #6089, closes #5986)
Diffstat (limited to 'src/drawline.c')
-rw-r--r--src/drawline.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/drawline.c b/src/drawline.c
index 8de307aa6e..0a5a4bd502 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -1177,6 +1177,12 @@ win_line(
c_final = NUL;
n_extra = get_breakindent_win(wp,
ml_get_buf(wp->w_buffer, lnum, FALSE));
+ if (row == startrow)
+ {
+ n_extra -= win_col_off2(wp);
+ if (n_extra < 0)
+ n_extra = 0;
+ }
if (wp->w_skipcol > 0 && wp->w_p_wrap && wp->w_briopt_sbr)
need_showbreak = FALSE;
// Correct end of highlighted area for 'breakindent',