Fix ci" on a brazillian keyboard (#13185)
Fixes: #12523 Release Notes: - vim: Fix ci" on keyboards where typing a " requires the IME (#12523)
This commit is contained in:
parent
05c4c7872c
commit
51404d4ea0
2 changed files with 22 additions and 4 deletions
|
@ -187,7 +187,7 @@ fn observe_keystrokes(keystroke_event: &KeystrokeEvent, cx: &mut WindowContext)
|
|||
if action.name().starts_with("vim::") {
|
||||
return;
|
||||
}
|
||||
} else if cx.has_pending_keystrokes() {
|
||||
} else if cx.has_pending_keystrokes() || keystroke_event.keystroke.is_ime_in_progress() {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue