mirror of
https://github.com/neovim/neovim.git
synced 2025-09-22 11:18:19 +00:00
vim-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 vim/vim#6089,
closes vim/vim#5986)
e882f7a73c
This commit is contained in:
@@ -2994,6 +2994,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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user