diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-01-23 23:00:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 02:00:05 +0400 |
commit | 79b686df419d90e5557d1b7000f51f012986c141 (patch) | |
tree | 81013bc5251cb8a1d512612bb6831e930636ef0d /alacritty/src/input | |
parent | 4c0c368e7ac8233b3fca848a25b42f0875a2494b (diff) | |
download | r-alacritty-79b686df419d90e5557d1b7000f51f012986c141.tar.gz r-alacritty-79b686df419d90e5557d1b7000f51f012986c141.tar.bz2 r-alacritty-79b686df419d90e5557d1b7000f51f012986c141.zip |
Allow specifying all config keys on all platforms
Closes #7592.
Diffstat (limited to 'alacritty/src/input')
-rw-r--r-- | alacritty/src/input/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/input/mod.rs b/alacritty/src/input/mod.rs index 5e8a4bfd..5bc95bdf 100644 --- a/alacritty/src/input/mod.rs +++ b/alacritty/src/input/mod.rs @@ -410,7 +410,7 @@ impl<T: EventListener> Execute<T> for Action { Action::SelectTab9 => ctx.window().select_tab_at_index(8), #[cfg(target_os = "macos")] Action::SelectLastTab => ctx.window().select_last_tab(), - Action::ReceiveChar | Action::None => (), + _ => (), } } } |