commit | 91e22eb6e09ec384496fccde812072033fd9e616 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Nov 10 00:19:12 2019 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Nov 10 00:19:12 2019 +0100 |
tree | 9c5f0efad19754abdf2adec48aa719b18932ab0e | |
parent | 4c054e9fb23027b55a09ee647a3a2c91936aeb1b [diff] [blame] |
patch 8.1.2283: missed on use of p_sbr Problem: Missed on use of p_sbr. Solution: Add missing p_sbr change.
diff --git a/src/indent.c b/src/indent.c index 4abe05b..755c3a9 100644 --- a/src/indent.c +++ b/src/indent.c
@@ -887,7 +887,7 @@ // 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);