From 951cf13d7e9c76854cb749dcc357685183a210a2 Mon Sep 17 00:00:00 2001 From: Noah Bernsohn Date: Sat, 14 Feb 2026 21:21:47 -0600 Subject: [PATCH] macOS: show keyboard shortcuts in command palette --- .../Features/Command Palette/TerminalCommandPalette.swift | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) }