Uh oh!
There was an error while loading. Please reload this page.
fix(web): show the correct new thread shortcut in command palette - #8513
fix(web): show the correct new thread shortcut in command palette#8513vaishnavsm wants to merge 2 commits into
Conversation
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Comment |
ApprovabilityVerdict: Approved at Macroscope's review found this PR approvable — This is a contained one-line UI correction that makes the existing active-project thread action display its dedicated You can add or adjust custom eligibility rules. Learn more. |
What Changed
Changed the shortcut shown for the command palette's current-project new thread action from
chat.newtochat.newLocal, matching the action's behavior.Why
The shortcut hint was misleading. The command palette action creates a thread directly in the current project, but it displayed the
chat.newbinding (Command+Shift+O), which represents the project-picker flow. Its behavior matcheschat.newLocal(Command+Shift+N) instead.This is the command palette counterpart to #5594, which established the same distinction for the sidebar's new thread button.
UI Changes
Before:
After:
Checklist
Made with GPT-5.6 Sol in Codex via T3 Code.
Note
Low Risk
Single property change on a command palette action label; no behavior or keybinding logic changes.
Overview
Updates the command palette “New thread in …” action so its keyboard hint uses
chat.newLocalinstead ofchat.new.That action still calls
startNewThreadFromContextand creates a thread in the active project without the project-picker flow. The displayed shortcut now matches that behavior (and the sidebar’s in-project new-thread label), rather than showing thechat.newbinding meant for picking a project.Reviewed by Cursor Bugbot for commit d4f0d21. Bugbot is set up for automated code reviews on this repo. Configure here.
Note
[!NOTE]
Fix new thread shortcut in
CommandPaletteto usechat.newLocalUpdates the
shortcutCommandproperty for the 'New thread' action in theOpenCommandPaletteDialogcomponent fromchat.newtochat.newLocal. This corrects the shortcut identifier so it matches the actual command.Macroscope summarized d4f0d21.