diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-02-02 11:30:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-02 11:30:23 +0300 |
commit | 1c878a0476257d328113efcd7088f1aa53f42e56 (patch) | |
tree | b4ba30e6b9549965387330f9eb7111c95795de69 /alacritty/src/config/ui_config.rs | |
parent | 246ec8945d84f658fc88d02a33c3590ef4a92e0f (diff) | |
download | r-alacritty-1c878a0476257d328113efcd7088f1aa53f42e56.tar.gz r-alacritty-1c878a0476257d328113efcd7088f1aa53f42e56.tar.bz2 r-alacritty-1c878a0476257d328113efcd7088f1aa53f42e56.zip |
Update winit to 0.28
Fixes #6644.
Fixes #6615.
Fixes #6558.
Fixes #6515.
Fixes #3187.
Fixes #62.
Diffstat (limited to 'alacritty/src/config/ui_config.rs')
-rw-r--r-- | alacritty/src/config/ui_config.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/alacritty/src/config/ui_config.rs b/alacritty/src/config/ui_config.rs index f58097cf..29ff2c4c 100644 --- a/alacritty/src/config/ui_config.rs +++ b/alacritty/src/config/ui_config.rs @@ -44,7 +44,9 @@ pub struct UiConfig { pub debug: Debug, /// Send escape sequences using the alt key. - pub alt_send_esc: bool, + #[config(removed = "It's now always set to 'true'. If you're on macOS use \ + 'window.option_as_alt' to alter behavior of Option")] + pub alt_send_esc: Option<bool>, /// Live config reload. pub live_config_reload: bool, @@ -88,7 +90,7 @@ impl Default for UiConfig { fn default() -> Self { Self { live_config_reload: true, - alt_send_esc: true, + alt_send_esc: Default::default(), #[cfg(unix)] ipc_socket: true, font: Default::default(), |