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

patch 8.1.2283: missed on use of p_sbr

Problem:    Missed on use of p_sbr.
Solution:   Add missing p_sbr change.
This commit is contained in:
Bram Moolenaar
2019-11-10 00:19:12 +01:00
parent 4c054e9fb2
commit 91e22eb6e0
2 changed files with 3 additions and 1 deletions

View File

@@ -887,7 +887,7 @@ get_breakindent_win(
// indent minus the length of the showbreak string
if (wp->w_p_brisbr)
bri -= vim_strsize(p_sbr);
bri -= vim_strsize(get_showbreak_value(wp));
// Add offset for number column, if 'n' is in 'cpoptions'
bri += win_col_off2(wp);