diff --git a/crates/command_palette/src/command_palette.rs b/crates/command_palette/src/command_palette.rs index 90c448137453fa0be95744958972c6dc63d85405..10c9ba7b8670e197e3d4fc805dbd15681a9edd30 100644 --- a/crates/command_palette/src/command_palette.rs +++ b/crates/command_palette/src/command_palette.rs @@ -265,7 +265,7 @@ impl PickerDelegate for CommandPaletteDelegate { .with_children( [ (keystroke.ctrl, "^"), - (keystroke.alt, "⎇"), + (keystroke.alt, "⌥"), (keystroke.cmd, "⌘"), (keystroke.shift, "⇧"), ] diff --git a/crates/gpui/src/keymap_matcher/keystroke.rs b/crates/gpui/src/keymap_matcher/keystroke.rs index bc0caddac9b2dd43d37016af49d66b66d684ef76..57992a834197c796f0edac9027ff83b4a2c2f5ce 100644 --- a/crates/gpui/src/keymap_matcher/keystroke.rs +++ b/crates/gpui/src/keymap_matcher/keystroke.rs @@ -112,7 +112,7 @@ impl std::fmt::Display for Keystroke { f.write_char('^')?; } if self.alt { - f.write_char('⎇')?; + f.write_char('⌥')?; } if self.cmd { f.write_char('⌘')?;