diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-09-28 22:29:58 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-09-28 22:29:58 +0200 |
commit | 4934ad0e448bfa03ba19c7c5b411c457a9910442 (patch) | |
tree | be240c37e3e2be89bde36969b2287a934b4209fc /src/menu.c | |
parent | d58a3bf7dac8d53faf42e13cc1152b110f12c404 (diff) | |
download | vim-git-4934ad0e448bfa03ba19c7c5b411c457a9910442.tar.gz |
patch 8.2.1769: popup filter interferes with using :normal to move the cursorv8.2.1769
Problem: A popup filter interferes with using :normal to move the cursor in
a popup.
Solution: Do not invoke the filter when ex_normal_busy is set.
Diffstat (limited to 'src/menu.c')
-rw-r--r-- | src/menu.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/menu.c b/src/menu.c index f383ddde7..fd811de06 100644 --- a/src/menu.c +++ b/src/menu.c @@ -2398,10 +2398,6 @@ execute_menu(exarg_T *eap, vimmenu_T *menu, int mode_idx) menu->silent[idx]); restore_current_state(&save_state); --ex_normal_busy; -#ifdef FEAT_PROP_POPUP - if (ex_normal_busy == 0) - ex_normal_busy_done = FALSE; -#endif } else ins_typebuf(menu->strings[idx], menu->noremap[idx], 0, |