neovim

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

commit 5335d9991f6d4b99062fda1b0a25500ad0c7b792
parent 025c0703123fac78cf93535dd284d00c3d64a245
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Sun,  6 Jul 2025 17:35:05 +0800

Merge pull request #34807 from zeertzjq/vim-9.1.1511

vim-patch:{9.1.1511,7a734b7}
Diffstat:
Mtest/old/testdir/runtest.vim | 1+
Mtest/old/testdir/test_edit.vim | 6------
2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/test/old/testdir/runtest.vim b/test/old/testdir/runtest.vim @@ -164,6 +164,7 @@ endif " Prepare for calling test_garbagecollect_now(). +" Also avoids some delays in Insert mode completion. let v:testing = 1 let s:has_ffi = luaeval('pcall(require, "ffi")') diff --git a/test/old/testdir/test_edit.vim b/test/old/testdir/test_edit.vim @@ -716,12 +716,9 @@ func Test_edit_CTRL_K() %d call setline(1, 'A') call cursor(1, 1) - let v:testing = 1 try call feedkeys("A\<c-x>\<c-k>\<esc>", 'tnix') catch - " error sleeps 2 seconds, when v:testing is not set - let v:testing = 0 endtry call Ntest_override("char_avail", 1) @@ -970,12 +967,9 @@ func Test_edit_CTRL_T() %d call setline(1, 'mad') call cursor(1, 1) - let v:testing = 1 try call feedkeys("A\<c-x>\<c-t>\<esc>", 'tnix') catch - " error sleeps 2 seconds, when v:testing is not set - let v:testing = 0 endtry call assert_equal(['mad'], getline(1, '$')) bw!