diff --git a/README.md b/README.md index e21cab8..31de591 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ A powerful native macOS AI chat application with support for multiple providers, - **Reasoning / Thinking Tokens** - Stream live reasoning from thinking-capable models (DeepSeek R1, Claude 3.7+, o1/o3, Qwen); configurable effort level (High/Medium/Low/Minimal); collapsible block auto-expands while thinking and collapses when the answer arrives - **Online Mode** - DuckDuckGo and Google web search integration - **Session Statistics** - Track token usage, costs, and response times -- **Command History** - Navigate previous commands with searchable modal (⌘H) +- **Command History** - Navigate previous commands with searchable modal (⇧⌘H) ### 🧠 Enhanced Memory & Context System - **Smart Context Selection** - Automatically select relevant messages to reduce token usage by 50-80% @@ -193,7 +193,7 @@ Add your API keys in Settings (⌘,) → General tab: - `/load` or `/list` - List and load saved conversations (⌘L) - `/delete ` - Delete a saved conversation - `/export [filename]` - Export conversation -- `/history` - Open command history modal (⌘H) +- `/history` - Open command history modal (⇧⌘H) ### Provider & Settings - `/provider [name]` - Switch or display current provider @@ -238,7 +238,7 @@ Can you review this code? @~/project/main.swift - `⌘,` - Open settings - `⌘N` - New conversation - `⌘L` - List saved conversations -- `⌘H` - Command history +- `⇧⌘H` - Command history - `Esc` - Cancel generation / Close dropdown - `↑/↓` - Navigate command dropdown (when typing `/`) - `Return` - Send message diff --git a/oAI/Resources/oAI.help/Contents/Resources/en.lproj/index.html b/oAI/Resources/oAI.help/Contents/Resources/en.lproj/index.html index 9d32f91..7592fe8 100644 --- a/oAI/Resources/oAI.help/Contents/Resources/en.lproj/index.html +++ b/oAI/Resources/oAI.help/Contents/Resources/en.lproj/index.html @@ -1535,7 +1535,7 @@ Whenever the user asks you to translate something, translate it to Norwegian Bok
⌘L
Browse Conversations
-
⌘H
+
⇧⌘H
Command History
⌘M
diff --git a/oAI/Views/Screens/HelpView.swift b/oAI/Views/Screens/HelpView.swift index 634ec2f..3a0bf92 100644 --- a/oAI/Views/Screens/HelpView.swift +++ b/oAI/Views/Screens/HelpView.swift @@ -52,7 +52,7 @@ private let helpCategories: [CommandCategory] = [ brief: "View command history", detail: "Opens a searchable modal showing all your previous messages with timestamps in European format (dd.MM.yyyy HH:mm:ss). Search by text content or date to find specific messages. Click any entry to reuse it.", examples: ["/history"], - shortcut: "⌘H" + shortcut: "⇧⌘H" ), CommandDetail( command: "/clear", diff --git a/oAI/oAIApp.swift b/oAI/oAIApp.swift index 0858f27..5cb44da 100644 --- a/oAI/oAIApp.swift +++ b/oAI/oAIApp.swift @@ -132,7 +132,7 @@ struct oAIApp: App { Divider() Button("Command History") { chatViewModel.showHistory = true } - .keyboardShortcut("h", modifiers: .command) + .keyboardShortcut("h", modifiers: [.command, .shift]) Button("In-App Help") { chatViewModel.showHelp = true } .keyboardShortcut("/", modifiers: .command)