mirror of
https://github.com/vim/vim.git
synced 2025-10-17 07:44:28 -04:00
patch 8.2.1769: popup filter interferes with using :normal to move the cursor
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.
This commit is contained in:
@@ -2616,15 +2616,15 @@ f_feedkeys(typval_T *argvars, typval_T *rettv UNUSED)
|
||||
msg_scroll = FALSE;
|
||||
|
||||
if (!dangerous)
|
||||
{
|
||||
++ex_normal_busy;
|
||||
++in_feedkeys;
|
||||
}
|
||||
exec_normal(TRUE, lowlevel, TRUE);
|
||||
if (!dangerous)
|
||||
{
|
||||
--ex_normal_busy;
|
||||
#ifdef FEAT_PROP_POPUP
|
||||
if (ex_normal_busy == 0)
|
||||
ex_normal_busy_done = FALSE;
|
||||
#endif
|
||||
--in_feedkeys;
|
||||
}
|
||||
|
||||
msg_scroll |= save_msg_scroll;
|
||||
|
Reference in New Issue
Block a user