diff --git a/crates/ui/src/components/keybinding.rs b/crates/ui/src/components/keybinding.rs index 98703f65f4cf3ccec9e483c70f5a43ac8d53a280..76bd128ed80ada2d8a2606963943de3d5db2cc07 100644 --- a/crates/ui/src/components/keybinding.rs +++ b/crates/ui/src/components/keybinding.rs @@ -473,6 +473,7 @@ fn keystroke_text( if modifiers.alt { match (platform_style, vim_mode) { (PlatformStyle::Mac, false) => text.push_str("Option"), + (PlatformStyle::Mac, true) => text.push_str("option"), (PlatformStyle::Linux | PlatformStyle::Windows, false) => text.push_str("Alt"), (_, true) => text.push_str("alt"), }