// // ShortcutsSettingsTab.swift // Zyquo Agent // // Author: Simon-Pierre Boucher // Mail: contact@spboucher.ai // // Settings › Shortcuts — the read-only shortcut reference for the full // Phase 6 command set. // import SwiftUI struct ShortcutsSettingsTab: View { private static let shortcuts: [(String, String)] = [ ("New task", "⌘N"), ("Command palette (templates · tasks · actions)", "⌘K"), ("Run task", "⌘↩"), ("Stop run", "⌘."), ("Search tasks", "⌘F"), ("Open audit log", "⌘⇧A"), ("Quick Task panel", "⌥Space"), ("Export transcript (Markdown)", "⌘⇧E"), ("Settings", "⌘,"), ] var body: some View { Form { ForEach(Self.shortcuts, id: \.0) { name, keys in LabeledContent(name) { Text(keys) .font(ZyquoFont.code(size: 12)) .foregroundStyle(ZyquoColor.textSecondary) } } } .formStyle(.grouped) } }