mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-07 11:11:30 +00:00
Fix jk
not working in Vim bindings (#8023)
Fixes #8006. Release Notes: - Fixed two-character bindings in Vim insert mode (e.g. `j k` or `j j`) not working. ([#8006](https://github.com/zed-industries/zed/issues/8006)) Co-authored-by: Conrad <conrad@zed.dev>
This commit is contained in:
parent
4d1585b917
commit
0a5df7d597
1 changed files with 1 additions and 4 deletions
|
@ -413,10 +413,7 @@ impl PlatformInputHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn flush_pending_input(&mut self, input: &str, cx: &mut WindowContext) {
|
pub(crate) fn flush_pending_input(&mut self, input: &str, cx: &mut WindowContext) {
|
||||||
let Some(range) = self.handler.selected_text_range(cx) else {
|
self.handler.replace_text_in_range(None, input, cx);
|
||||||
return;
|
|
||||||
};
|
|
||||||
self.handler.replace_text_in_range(Some(range), input, cx);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue