Uh oh!
There was an error while loading. Please reload this page.
feat(console/ai): keyboard shortcuts — ⌘⇧O new chat, ⌘⇧S toggle list - #1707
Merged
Conversation
Parity with ChatGPT/Claude: ⌘/Ctrl+Shift+O starts a new conversation, and ⌘/Ctrl+Shift+S toggles the conversations list. Both use the ⌘/Ctrl+Shift modifier so they're safe to fire while the composer is focused (ordinary typing can't produce them). Registered via a keydown listener on the AI chat page and surfaced in the keyboard-shortcuts cheatsheet (the "?" dialog) under a new "AI assistant" group. The match logic is a pure exported `matchAiChatShortcut` and unit-tested. Test: 487 pass (5 new — ⌘/Ctrl variants, requires Shift, rejects Alt/missing modifier, ignores unrelated keys). tsc clean; no new lint errors. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
✅ Console Performance Budget
📦 Bundle Size Report
Size Limits
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Power-user parity with ChatGPT / Claude — drive the AI chat from the keyboard.
What
Both use the ⌘/Ctrl+Shift modifier, so they're safe to fire even while the composer is focused (ordinary typing can't produce them). Surfaced in the keyboard-shortcuts cheatsheet (the
?dialog) under a new "AI assistant" group, so they're discoverable.Match logic is a pure exported
matchAiChatShortcut.Verification
tscclean; no new lint errors.Third of the chat-UX pass (after collapsible list #1703 and resizable split #1705).
🤖 Generated with Claude Code