mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 13:38:34 +00:00
eventloop: FocusGained: schedule event instead of pseudokey
closes #4840 closes #6164
This commit is contained in:
@@ -26,10 +26,11 @@ void state_enter(VimState *s)
|
||||
int check_result = s->check ? s->check(s) : 1;
|
||||
|
||||
if (!check_result) {
|
||||
break;
|
||||
break; // Terminate this state.
|
||||
} else if (check_result == -1) {
|
||||
continue;
|
||||
continue; // check() again.
|
||||
}
|
||||
// Execute this state.
|
||||
|
||||
int key;
|
||||
|
||||
|
Reference in New Issue
Block a user