neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit d23f28cca28f88cd3f6f859741a3b06bc0d73228
parent d0c699ec7b0fe6f942536b8241e35575f3b9d5ff
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Wed, 18 Feb 2026 21:10:22 +0800

test(win_scrolled_resized_spec): fix flaky test (#37942)


Diffstat:
Mtest/functional/autocmd/win_scrolled_resized_spec.lua | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/test/functional/autocmd/win_scrolled_resized_spec.lua b/test/functional/autocmd/win_scrolled_resized_spec.lua @@ -50,10 +50,12 @@ describe('WinResized', function() eq(0, eval('g:resized')) command('vsplit term://') + feed('<Ignore>') -- Add input to separate two RPC requests eq({ mode = 't', blocking = false }, api.nvim_get_mode()) eq(1, eval('g:resized')) command('split') + feed('<Ignore>') -- Add input to separate two RPC requests eq({ mode = 't', blocking = false }, api.nvim_get_mode()) eq(2, eval('g:resized')) end)