diff --git a/src/testdir/runtest.vim b/src/testdir/runtest.vim index f03fe44499..b1ffd19609 100644 --- a/src/testdir/runtest.vim +++ b/src/testdir/runtest.vim @@ -180,6 +180,7 @@ endif " Prepare for calling test_garbagecollect_now(). +" Also avois some delays in Insert mode completion. let v:testing = 1 " By default, copy each buffer line into allocated memory, so that valgrind can diff --git a/src/testdir/test_edit.vim b/src/testdir/test_edit.vim index a212e8c5a1..bde2cb0c8f 100644 --- a/src/testdir/test_edit.vim +++ b/src/testdir/test_edit.vim @@ -709,12 +709,9 @@ func Test_edit_CTRL_K() %d call setline(1, 'A') call cursor(1, 1) - let v:testing = 1 try call feedkeys("A\\\", 'tnix') catch - " error sleeps 2 seconds, when v:testing is not set - let v:testing = 0 endtry call test_override("char_avail", 1) @@ -962,12 +959,9 @@ func Test_edit_CTRL_T() %d call setline(1, 'mad') call cursor(1, 1) - let v:testing = 1 try call feedkeys("A\\\", 'tnix') catch - " error sleeps 2 seconds, when v:testing is not set - let v:testing = 0 endtry call assert_equal(['mad'], getline(1, '$')) bw!