Update src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChat.ts

This commit is contained in:
Megan Rogge 2024-03-28 15:14:19 -07:00 committed by GitHub
parent c8f8deaa25
commit a27c8436fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -64,7 +64,7 @@ export namespace TerminalChatContextKeys {
/** Whether the terminal chat agent has been registered */
export const agentRegistered = new RawContextKey<boolean>(TerminalChatContextKeyStrings.ChatAgentRegistered, false, localize('chatAgentRegisteredContextKey', "Whether the terminal chat agent has been registered."));
/** The chat response contains a single code block */
/** The chat response contains at least one code block */
export const responseContainsCodeBlock = new RawContextKey<boolean>(TerminalChatContextKeyStrings.ChatResponseContainsCodeBlock, false, localize('chatResponseContainsCodeBlockContextKey', "Whether the chat response contains a code block."));
/** The chat response contains multiple code blocks */