Skip to content

Commit cd20192

Browse files
authored
fix: make chat input placeholder less cryptic (microsoft#255601)
1 parent f3e8ccb commit cd20192

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/chat/browser/contrib/chatInputEditorContrib.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ class InputEditorDecorations extends Disposable {
134134
let description = mode.description.get();
135135
if (this.configurationService.getValue<boolean>('chat.emptyChatState.enabled')) {
136136
if (mode.kind === ChatModeKind.Ask) {
137-
description += ` ${localize('askPlaceholderHint', "# context, @ extensions, / commands")}`;
137+
description += ` ${localize('askPlaceholderHint', "# to add context, @ for extensions, / for commands")}`;
138138
} else if (mode.kind === ChatModeKind.Edit || mode.kind === ChatModeKind.Agent) {
139-
description += ` ${localize('editPlaceholderHint', "# context")}`;
139+
description += ` ${localize('editPlaceholderHint', "# to add context")}`;
140140
}
141141
}
142142

0 commit comments

Comments
 (0)