mirror of
https://github.com/wez/wezterm.git
synced 2024-11-28 01:06:37 +03:00
7858f652fb
The issue here was that we'd try to match this: ``` key_event RawKeyEvent { key: Char('t'), modifiers: ALT | LEFT_ALT, phys_code: Some(T), raw_code: 17, repeat_count: 1, key_is_down: true, handled: Handled(false) } ``` which has mods=`ALT|LEFT_ALT` against `ALT` and would fail. We need to strip out the positional ALTs from the modifiers in order to successfully match. refs: https://github.com/wez/wezterm/issues/1958 |
||
---|---|---|
.. | ||
src | ||
build.rs | ||
Cargo.toml |