mirror of
https://github.com/neovim/neovim.git
synced 2025-09-23 11:38:31 +00:00
vim-patch:8.2.2938: after using motion force from feedkeys() it sticks (#15240)
Problem: After using motion force from feedkeys() it may not be reset.
Solution: Clear motion_force in clearop(). (closes vim/vim#8323)
21492743e8
This commit is contained in:
@@ -3277,6 +3277,7 @@ static void clearop(oparg_T *oap)
|
||||
oap->regname = 0;
|
||||
oap->motion_force = NUL;
|
||||
oap->use_reg_one = false;
|
||||
motion_force = NUL;
|
||||
}
|
||||
|
||||
static void clearopbeep(oparg_T *oap)
|
||||
|
Reference in New Issue
Block a user