1
0
forked from aniani/vim

patch 8.2.1513: cannot interrupt shell used for filename expansion

Problem:    Cannot interrupt shell used for filename expansion. (Dominique
            Pellé)
Solution:   Do set tmode in mch_delay(). (closes #6770)
This commit is contained in:
Bram Moolenaar
2020-08-23 14:28:37 +02:00
parent 69e44552c5
commit 0981c8729e
12 changed files with 41 additions and 26 deletions

View File

@@ -3598,7 +3598,7 @@ stoptermcap(void)
{
# ifdef UNIX
// Give the terminal a chance to respond.
mch_delay(100L, FALSE);
mch_delay(100L, 0);
# endif
# ifdef TCIFLUSH
// Discard data received but not read.