Added alternative Alt + character handing for MacOS

By default on MacOS pressing a key combination containing an Alt key
produces a special character:

    <Alt + s> -> ß
    <Alt + v> -> √
    ...

It is really unfortunate if you want to use those key combinations as
shortcuts and this case has to be handles separately by the app.

This commit introduces a new configuration flag
`neovide_macos_alt_is_meta`. When the flag is set to true then all the
Alt- key combinations are treated as shortcuts with no extra character
modifications, i.e. pressing `Alt` and `s` indeed emits a <M-s>
shortcut.
macos-click-through
Ivan Oreshnikov 2 years ago
parent 7a3bf522ed
commit 5bbcfb619c

@ -147,7 +147,7 @@ impl KeyboardManager {
if let Some(original_key_text) = key_text { if let Some(original_key_text) = key_text {
let mut key_text = original_key_text; let mut key_text = original_key_text;
if self.alt { if self.alt {
if let Some(modify) = key_event.text_with_all_modifiers() { if let Some(modify) = key_event_text(key_event) {
key_text = modify; key_text = modify;
} }
} }
@ -194,8 +194,24 @@ fn use_alt(alt: bool) -> bool {
// The option or alt key is used on Macos for character set changes // The option or alt key is used on Macos for character set changes
// and does not operate the same as other systems. // and does not operate the same as other systems.
#[cfg(target_os = "macos")] #[cfg(target_os = "macos")]
fn use_alt(_: bool) -> bool { fn use_alt(alt: bool) -> bool {
false let settings = SETTINGS.get::<KeyboardSettings>();
settings.macos_alt_is_meta && alt
}
#[cfg(not(target_os = "macos"))]
fn key_event_text(key_event: &KeyEvent) -> Option<&str> {
key_event.text_with_all_modifiers()
}
#[cfg(target_os = "macos")]
fn key_event_text(key_event: &KeyEvent) -> Option<&str> {
let settings = SETTINGS.get::<KeyboardSettings>();
if settings.macos_alt_is_meta {
key_event.text
} else {
key_event.text_with_all_modifiers()
}
} }
fn or_empty(condition: bool, text: &str) -> &str { fn or_empty(condition: bool, text: &str) -> &str {

@ -35,4 +35,5 @@ impl Default for WindowSettings {
#[setting_prefix = "input"] #[setting_prefix = "input"]
pub struct KeyboardSettings { pub struct KeyboardSettings {
pub use_logo: bool, pub use_logo: bool,
pub macos_alt_is_meta: bool,
} }

Loading…
Cancel
Save