1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-26 08:25:50 +03:00

fix encoding Tab with modifiers

This commit is contained in:
cairijun 2023-05-18 19:22:23 +08:00 committed by Wez Furlong
parent 281e0e1737
commit 2428282b42

View File

@ -262,6 +262,9 @@ impl KeyCode {
// We only want down events // We only want down events
return Ok(String::new()); return Ok(String::new());
} }
// We are encoding the key as an xterm-compatible sequence, which does not support
// positional modifiers.
let mods = mods.remove_positional_mods();
use KeyCode::*; use KeyCode::*;
@ -1887,4 +1890,35 @@ mod test {
"\u{1b}[1;2F".to_string() "\u{1b}[1;2F".to_string()
); );
} }
#[test]
fn encode_tab_with_modifiers() {
let mode = KeyCodeEncodeModes {
encoding: KeyboardEncoding::Xterm,
newline_mode: false,
application_cursor_keys: false,
modify_other_keys: None,
};
let mods_to_result = [
(Modifiers::SHIFT, "\u{1b}[Z"),
(Modifiers::SHIFT | Modifiers::LEFT_SHIFT, "\u{1b}[Z"),
(Modifiers::SHIFT | Modifiers::RIGHT_SHIFT, "\u{1b}[Z"),
(Modifiers::CTRL, "\u{1b}[9;5u"),
(Modifiers::CTRL | Modifiers::LEFT_CTRL, "\u{1b}[9;5u"),
(Modifiers::CTRL | Modifiers::RIGHT_CTRL, "\u{1b}[9;5u"),
(
Modifiers::SHIFT | Modifiers::CTRL | Modifiers::LEFT_CTRL | Modifiers::LEFT_SHIFT,
"\u{1b}[1;5Z",
),
];
for (mods, result) in mods_to_result {
assert_eq!(
KeyCode::Tab.encode(mods, mode, true).unwrap(),
result,
"{:?}",
mods
);
}
}
} }