mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 07:18:17 +00:00
Fix missing CursorHoldI events (#3758)
Fixes https://github.com/neovim/neovim/issues/3757.
This commit is contained in:
@@ -649,7 +649,9 @@ static int insert_execute(VimState *state, int key)
|
||||
s->c = key;
|
||||
|
||||
// Don't want K_EVENT with cursorhold for the second key, e.g., after CTRL-V.
|
||||
did_cursorhold = true;
|
||||
if (key != K_EVENT) {
|
||||
did_cursorhold = true;
|
||||
}
|
||||
|
||||
if (p_hkmap && KeyTyped) {
|
||||
s->c = hkmap(s->c); // Hebrew mode mapping
|
||||
|
Reference in New Issue
Block a user