1
0
forked from aniani/vim

patch 8.1.2385: opening cmdline window with feedkeys() does not work

Problem:    Opening cmdline window with feedkeys() does not work. (Yegappan
            Lakshmanan)
Solution:   Recognize K_CMDWIN also when ex_normal_busy is set.
This commit is contained in:
Bram Moolenaar
2019-12-04 15:11:08 +01:00
parent 079119babe
commit 85db547598
3 changed files with 9 additions and 1 deletions

View File

@@ -843,3 +843,8 @@ func Test_buffers_lastused()
bwipeout bufb
bwipeout bufc
endfunc
func Test_cmdwin_feedkeys()
" This should not generate E488
call feedkeys("q:\<CR>", 'x')
endfunc