From 09b51bbf87b16af9a186cea750ada748d89aa259 Mon Sep 17 00:00:00 2001 From: Danish Prakash Date: Fri, 16 Feb 2018 11:04:06 +0000 Subject: vim-patch:8.0.0323: one second pause when running cmdline test (#8015) Problem: When running the command line tests there is a one second wait. Solution: Change an Esc to Ctrl-C. (Yegappan Lakshmanan) https://github.com/vim/vim/commit/31eb139b8877439d06db0ca57692dfe35fec3f0c --- src/nvim/testdir/test_cmdline.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/testdir/test_cmdline.vim b/src/nvim/testdir/test_cmdline.vim index 19b0624c1f..1bf5930eb9 100644 --- a/src/nvim/testdir/test_cmdline.vim +++ b/src/nvim/testdir/test_cmdline.vim @@ -374,7 +374,7 @@ func Test_getcmdtype() call feedkeys("?MyCmd a\=Check_cmdline('?')\\", "xt") call feedkeys(":call input('Answer?')\", "t") - call feedkeys("MyCmd a\=Check_cmdline('@')\\", "xt") + call feedkeys("MyCmd a\=Check_cmdline('@')\\", "xt") call feedkeys(":insert\MyCmd a\=Check_cmdline('-')\\", "xt") -- cgit