Skip to content

Commit

Permalink
Fix wrong character for rendering agent commands (microsoft#196418)
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens authored and Alex0007 committed Oct 26, 2023
1 parent 88f3706 commit bb3c6ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/chat/common/chatParserTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class ChatRequestAgentSubcommandPart implements IParsedChatRequestPart {
constructor(readonly range: OffsetRange, readonly editorRange: IRange, readonly command: IChatAgentCommand) { }

get text(): string {
return `${chatVariableLeader}${this.command.name}`;
return `${chatSubcommandLeader}${this.command.name}`;
}

get promptText(): string {
Expand Down

0 comments on commit bb3c6ee

Please sign in to comment.