mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 13:15:09 -07:00
fix(column): reset decor state before starting from top
This commit is contained in:
parent
b514edcdf4
commit
df399ea0d2
@ -2335,6 +2335,7 @@ static void win_update(win_T *wp, DecorProviders *providers)
|
|||||||
lnum = wp->w_topline;
|
lnum = wp->w_topline;
|
||||||
wp->w_lines_valid = 0;
|
wp->w_lines_valid = 0;
|
||||||
wp->w_valid &= ~VALID_WCOL;
|
wp->w_valid &= ~VALID_WCOL;
|
||||||
|
decor_redraw_reset(wp, &decor_state);
|
||||||
decor_providers_invoke_win(wp, providers, &line_providers);
|
decor_providers_invoke_win(wp, providers, &line_providers);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -46,22 +46,17 @@ describe('statuscolumn', function()
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
it("widens with irregular 'statuscolumn' width", function()
|
it("widens with irregular 'statuscolumn' width", function()
|
||||||
command([[set stc=%{v:relnum?v:relnum:(v:lnum==5?'bbbbb':v:lnum)}]])
|
screen:try_resize(screen._width, 4)
|
||||||
command('norm 5G | redraw!')
|
command([=[
|
||||||
|
set stc=%{v:relnum?v:relnum:(v:lnum==5?'bbbbb':v:lnum)}
|
||||||
|
let ns = nvim_create_namespace('')
|
||||||
|
call nvim_buf_set_extmark(0, ns, 3, 0, {'virt_text':[['virt_text']]})
|
||||||
|
norm 5G | redraw!
|
||||||
|
]=])
|
||||||
screen:expect([[
|
screen:expect([[
|
||||||
1 aaaaa |
|
1 aaaaa virt_text |
|
||||||
bbbbba^eaaa |
|
bbbbba^eaaa |
|
||||||
1 aaaaa |
|
1 aaaaa |
|
||||||
2 aaaaa |
|
|
||||||
3 aaaaa |
|
|
||||||
4 aaaaa |
|
|
||||||
5 aaaaa |
|
|
||||||
6 aaaaa |
|
|
||||||
7 aaaaa |
|
|
||||||
8 aaaaa |
|
|
||||||
9 aaaaa |
|
|
||||||
10 aaaaa |
|
|
||||||
11 aaaaa |
|
|
||||||
|
|
|
|
||||||
]])
|
]])
|
||||||
end)
|
end)
|
||||||
|
Loading…
Reference in New Issue
Block a user