aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanish Prakash <grafitykoncept@gmail.com>2018-02-16 11:04:06 +0000
committerMarco Hinz <mh.codebro+github@gmail.com>2018-02-16 12:04:06 +0100
commit09b51bbf87b16af9a186cea750ada748d89aa259 (patch)
treecc2a961ad20480951cf93975d9151af20899a246
parent77286915a8d90d358860a64e3beee10054cd8a84 (diff)
downloadrneovim-09b51bbf87b16af9a186cea750ada748d89aa259.tar.gz
rneovim-09b51bbf87b16af9a186cea750ada748d89aa259.tar.bz2
rneovim-09b51bbf87b16af9a186cea750ada748d89aa259.zip
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
-rw-r--r--src/nvim/testdir/test_cmdline.vim2
1 files changed, 1 insertions, 1 deletions
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\<C-R>=Check_cmdline('?')\<CR>\<Esc>", "xt")
call feedkeys(":call input('Answer?')\<CR>", "t")
- call feedkeys("MyCmd a\<C-R>=Check_cmdline('@')\<CR>\<Esc>", "xt")
+ call feedkeys("MyCmd a\<C-R>=Check_cmdline('@')\<CR>\<C-C>", "xt")
call feedkeys(":insert\<CR>MyCmd a\<C-R>=Check_cmdline('-')\<CR>\<Esc>", "xt")