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

This commit is contained in:
Megan Rogge 2024-03-28 15:13:54 -07:00 committed by GitHub
parent 327420f09c
commit c8f8deaa25
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 type of chat response, if any */
/** The chat response contains a single 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 */