1
0
forked from aniani/vim

patch 8.2.0274: hang with combination of feedkeys(), Ex mode and :global

Problem:    Hang with combination of feedkeys(), Ex mode and :global.
            (Yegappan Lakshmanan)
Solution:   Add the pending_exmode_active flag.
This commit is contained in:
Bram Moolenaar
2020-02-18 21:33:00 +01:00
parent 1fa8d2c33d
commit 9e2bcb5d23
5 changed files with 20 additions and 0 deletions

View File

@@ -3041,6 +3041,10 @@ vgetorpeek(int advance)
#ifdef FEAT_CMDWIN
tc = c;
#endif
// return from main_loop()
if (pending_exmode_active)
exmode_active = EXMODE_NORMAL;
break;
}