diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2024-10-10 21:01:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-10 21:01:44 +0300 |
commit | c032c89f1c457c3cf97dcda3f8367115fa5f66ea (patch) | |
tree | 6e075ece45b72f3cb6fba393bde2488e6d89f95a /alacritty | |
parent | a1ed79bd2c014be49a85e2100ce374b86c8839e8 (diff) | |
download | r-alacritty-c032c89f1c457c3cf97dcda3f8367115fa5f66ea.tar.gz r-alacritty-c032c89f1c457c3cf97dcda3f8367115fa5f66ea.tar.bz2 r-alacritty-c032c89f1c457c3cf97dcda3f8367115fa5f66ea.zip |
Change ctrl+shift+u to ctrl+shift+o
Avoid collisions with IMEs by using ctrl+shift+o. ctrl+shift+u is bound
to open unicode input in a lot of IMEs by default meaning that users
won't ever see the url hints UI.
Diffstat (limited to 'alacritty')
-rw-r--r-- | alacritty/src/config/ui_config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/config/ui_config.rs b/alacritty/src/config/ui_config.rs index a6155b8a..69716dee 100644 --- a/alacritty/src/config/ui_config.rs +++ b/alacritty/src/config/ui_config.rs @@ -282,7 +282,7 @@ impl Default for Hints { mouse: Some(HintMouse { enabled: true, mods: Default::default() }), binding: Some(HintBinding { key: BindingKey::Keycode { - key: Key::Character("u".into()), + key: Key::Character("o".into()), location: KeyLocation::Standard, }, mods: ModsWrapper(ModifiersState::SHIFT | ModifiersState::CONTROL), |