vim-patch:8.2.0309: window-local values have confusing name

Problem:    Window-local values have confusing name.
Solution:   Rename w_p_bri* to w_briopt_*.
b81f56fb57
This commit is contained in:
Jan Edmund Lazo
2020-05-10 23:36:05 -04:00
parent 801c8e06d6
commit adcabb73bc
4 changed files with 15 additions and 14 deletions

View File

@@ -7229,9 +7229,9 @@ static bool briopt_check(win_T *wp)
}
}
wp->w_p_brishift = bri_shift;
wp->w_p_brimin = bri_min;
wp->w_p_brisbr = bri_sbr;
wp->w_briopt_shift = bri_shift;
wp->w_briopt_min = bri_min;
wp->w_briopt_sbr = bri_sbr;
return true;
}