Wait for composition to end before sending InputIgnored (#12871)

Conrad Irwin created

Release Notes:

- vim: Fixed `f`/`t` etc. for keys that require IME (#12522)

Change summary

crates/editor/src/editor.rs | 1 -
1 file changed, 1 deletion(-)

Detailed changes

crates/editor/src/editor.rs 🔗

@@ -11708,7 +11708,6 @@ impl ViewInputHandler for Editor {
         cx: &mut ViewContext<Self>,
     ) {
         if !self.input_enabled {
-            cx.emit(EditorEvent::InputIgnored { text: text.into() });
             return;
         }