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

This commit is contained in:
Megan Rogge 2024-03-28 15:13:33 -07:00 committed by GitHub
parent 321bee3d6f
commit 327420f09c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -67,7 +67,7 @@ export namespace TerminalChatContextKeys {
/** The type of chat response, if any */
export const responseContainsCodeBlock = new RawContextKey<boolean>(TerminalChatContextKeyStrings.ChatResponseContainsCodeBlock, false, localize('chatResponseContainsCodeBlockContextKey', "Whether the chat response contains a code block."));
/** The type of chat response, if any */
/** The chat response contains multiple code blocks */
export const responseContainsMultipleCodeBlocks = new RawContextKey<boolean>(TerminalChatContextKeyStrings.ChatResponseContainsMultipleCodeBlocks, false, localize('chatResponseContainsMultipleCodeBlocksContextKey', "Whether the chat response contains multiple code blocks."));
/** Whether the response supports issue reporting */