neovim

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

commit 41ceadd4587f5fe3e44a7e150d5624bac8af3519
parent 0547347e72c1e345faf7b7d835a806bfb1f59b68
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Sat, 27 Apr 2024 18:02:18 +0800

vim-patch:9.1.0375: tests: 1-second delay after Test_BufEnter_botline() (#28534)

Problem:  tests: 1-second delay after Test_BufEnter_botline()
          (after v9.1.0374)
Solution: Wipe the created buffers (zeertzjq).

closes: vim/vim#14647

https://github.com/vim/vim/commit/340643e9779a96710a27d0eeef24f2c08b8967c4
Diffstat:
Mtest/old/testdir/test_autocmd.vim | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/test/old/testdir/test_autocmd.vim b/test/old/testdir/test_autocmd.vim @@ -4113,6 +4113,9 @@ func Test_BufEnter_botline() edit Xxx2 au BufEnter Xxx1 call assert_true(line('w$') > 1) edit Xxx1 + + bwipe! Xxx1 + bwipe! Xxx2 au! BufEnter Xxx1 set hidden&vim endfunc