ui: Mirror option key in keybindings (#3065)

Piotr Osiewicz created

![image](https://github.com/zed-industries/zed/assets/24362066/94731737-a21a-4cef-a445-eb855f1a4d3e)

![image](https://github.com/zed-industries/zed/assets/24362066/e879ec9a-70aa-4989-923f-4cca18d01587)

Release Notes:

- Fixed option key's appearance in keybindings

Change summary

crates/command_palette/src/command_palette.rs | 2 +-
crates/gpui/src/keymap_matcher/keystroke.rs   | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

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, "⇧"),
                         ]