macOS: show keyboard shortcuts in command palette

This commit is contained in:
Noah Bernsohn
2026-02-14 21:21:47 -06:00
parent cfcc3aa142
commit 951cf13d7e

View File

@@ -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)
}