0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.0766: display error when using 'number' and 'breakindent'

Problem:    Display error when using 'number' and 'breakindent'.
Solution:   Adjust extra spaces in the first row. (Ken Takata, closes #6089,
            closes #5986)
This commit is contained in:
Bram Moolenaar
2020-05-16 14:07:39 +02:00
parent fd615a3c90
commit e882f7a73c
3 changed files with 55 additions and 0 deletions

View File

@@ -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',