1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 13:21:38 +03:00

macos: really really fix ctrl-shift-tab

refs: #1902
This commit is contained in:
Wez Furlong 2022-06-24 10:57:36 -07:00
parent 0261f96341
commit b5f015c9bb

View File

@ -2370,6 +2370,7 @@ impl WindowView {
if (chars == "." && modifiers == Modifiers::SUPER)
|| (chars == "\u{1b}" && modifiers == Modifiers::CTRL)
|| (chars == "\t" && modifiers == Modifiers::CTRL)
|| (chars == "\x19"/* Shift-Tab: See issue #1902 */)
{
// Synthesize a key down event for this, because macOS will
// not do that, even though we tell it that we handled this event.