Wait for composition to end before sending InputIgnored (#12871)
Some checks are pending
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run

Release Notes:

- vim: Fixed `f`/`t` etc. for keys that require IME (#12522)
This commit is contained in:
Conrad Irwin 2024-06-10 20:03:21 -06:00 committed by GitHub
parent 4e98c23463
commit 44a58647e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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