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:
@@ -887,7 +887,7 @@ get_breakindent_win(
|
|||||||
|
|
||||||
// indent minus the length of the showbreak string
|
// indent minus the length of the showbreak string
|
||||||
if (wp->w_p_brisbr)
|
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'
|
// Add offset for number column, if 'n' is in 'cpoptions'
|
||||||
bri += win_col_off2(wp);
|
bri += win_col_off2(wp);
|
||||||
|
@@ -741,6 +741,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2283,
|
||||||
/**/
|
/**/
|
||||||
2282,
|
2282,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user