Skip to content

Commit 331fe0b

Browse files
committed
Clarify generate instructions command
1 parent 03394e2 commit 331fe0b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/vs/workbench/contrib/chat/browser/actions/chatActions.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -819,9 +819,9 @@ export function registerChatActions() {
819819
registerAction2(class UpdateInstructionsAction extends Action2 {
820820
constructor() {
821821
super({
822-
id: 'workbench.action.chat.updateInstructions',
823-
title: localize2('updateInstructions', "Generate Instructions"),
824-
shortTitle: localize2('updateInstructions.short', "Generate Instructions"),
822+
id: 'workbench.action.chat.generateInstructions',
823+
title: localize2('generateInstructions', "Generate Workspace Instructions File"),
824+
shortTitle: localize2('generateInstructions.short', "Generate Instructions"),
825825
category: CHAT_CATEGORY,
826826
icon: Codicon.sparkle,
827827
f1: true,

src/vs/workbench/contrib/chat/browser/promptSyntax/pickers/promptFilePickers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const UPDATE_INSTRUCTIONS_OPTION: IPromptPickerQuickPickItem = Object.freeze({
130130
pickable: false,
131131
alwaysShow: true,
132132
buttons: [HELP_BUTTON],
133-
commandId: 'workbench.action.chat.updateInstructions',
133+
commandId: 'workbench.action.chat.generateInstructions',
134134
});
135135

136136
/**

0 commit comments

Comments
 (0)