Skip to content

Commit 8c315b5

Browse files
authored
Fix wrong character for rendering agent commands (microsoft#196418)
1 parent 3d7ff4a commit 8c315b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/common/chatParserTypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class ChatRequestAgentSubcommandPart implements IParsedChatRequestPart {
8383
constructor(readonly range: OffsetRange, readonly editorRange: IRange, readonly command: IChatAgentCommand) { }
8484

8585
get text(): string {
86-
return `${chatVariableLeader}${this.command.name}`;
86+
return `${chatSubcommandLeader}${this.command.name}`;
8787
}
8888

8989
get promptText(): string {

0 commit comments

Comments
 (0)