diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-05 02:04:19 -0500 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2019-12-04 23:04:19 -0800 |
| commit | ed424655bef3169dc5452c5a8212e250dc483f9e (patch) | |
| tree | 264515d63ef55a2449fd28cec807d6e5c52aeaa6 /src/nvim/testdir | |
| parent | 3aa95ef27eb8817bc2ceddb6caf2b209e00a5e8d (diff) | |
| download | rneovim-ed424655bef3169dc5452c5a8212e250dc483f9e.tar.gz rneovim-ed424655bef3169dc5452c5a8212e250dc483f9e.tar.bz2 rneovim-ed424655bef3169dc5452c5a8212e250dc483f9e.zip | |
vim-patch:8.1.2385: open cmdline window with feedkeys() #11516
Problem: Opening cmdline window with feedkeys() does not work. (Yegappan
Lakshmanan)
Solution: Recognize K_CMDWIN also when ex_normal_busy is set.
https://github.com/vim/vim/commit/85db5475982e166ec5bb1c8c9a5c8bf062d49ed1
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_cmdline.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_cmdline.vim b/src/nvim/testdir/test_cmdline.vim index 262ea11eb6..9c3c33a943 100644 --- a/src/nvim/testdir/test_cmdline.vim +++ b/src/nvim/testdir/test_cmdline.vim @@ -750,3 +750,8 @@ func Test_cmdline_overstrike() let &encoding = encoding_save endfunc + +func Test_cmdwin_feedkeys() + " This should not generate E488 + call feedkeys("q:\<CR>", 'x') +endfunc |