From 44a58647e4dc127d0e9b96b4b4473da93f7b9c36 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Mon, 10 Jun 2024 20:03:21 -0600 Subject: [PATCH] Wait for composition to end before sending InputIgnored (#12871) Release Notes: - vim: Fixed `f`/`t` etc. for keys that require IME (#12522) --- crates/editor/src/editor.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index 1e61dc9f4a..16402795ee 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -11708,7 +11708,6 @@ impl ViewInputHandler for Editor { cx: &mut ViewContext, ) { if !self.input_enabled { - cx.emit(EditorEvent::InputIgnored { text: text.into() }); return; }