diff --git a/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift b/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift index 008fc992a..9bdf4b4ff 100644 --- a/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift +++ b/macos/Sources/Features/Command Palette/TerminalCommandPalette.swift @@ -123,9 +123,11 @@ struct TerminalCommandPaletteView: View { return appDelegate.ghostty.config.commandPaletteEntries .filter(\.isSupported) .map { c in - CommandOption( + let symbols = appDelegate.ghostty.config.keyboardShortcut(for: c.action)?.keyList + return CommandOption( title: c.title, - description: c.description + description: c.description, + symbols: symbols ) { onAction(c.action) }