Skip to content

Commit 141a6c3

Browse files
authored
Revert "terminal: Make IME work with tab and enter keys (#27572)" (#27719)
This reverts commit be657ae. (#27572) Unfortunately this change broke other bindings in the terminal like `cmd-left` and `cmd-right`. We do need to redo the terminal IME handling at some point, but we'll need a bit more thought to find an approach that works. Release Notes: - N/A
1 parent b4254a3 commit 141a6c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/terminal_view/src/terminal_element.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ impl InputHandler for TerminalInputHandler {
998998
}
999999

10001000
fn marked_text_range(&mut self, _: &mut Window, _: &mut App) -> Option<std::ops::Range<usize>> {
1001-
Some(0..0)
1001+
None
10021002
}
10031003

10041004
fn text_for_range(

0 commit comments

Comments
 (0)