Hi, After 7.4.084, test86 and 87 stop in the input mode on Windows. It is caused by inputsave() and feedkeys(), I think. The following patch seems to fix this:
--- a/src/testdir/test86.in +++ b/src/testdir/test86.in @@ -1384,6 +1384,7 @@ EOF :debug silent! py test_keyboard_interrupt() :redir END :0 debuggreedy +:call inputrestore() :silent $put =output :unlet output :py del test_keyboard_interrupt --- a/src/testdir/test87.in +++ b/src/testdir/test87.in @@ -1361,6 +1361,7 @@ EOF :debug silent! py3 test_keyboard_interrupt() :redir END :0 debuggreedy +:call inputrestore() :silent $put =output :unlet output :py3 del test_keyboard_interrupt Regards, Ken Takata -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
