You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: localize('verbosity.interactiveEditor.description','Provide information about how to access the inline editor chat accessibility help menu and alert with hints that describe how to use the feature when the input is focused.'),
description: localize('verbosity.terminalChatOutput.description','Provide information about how to open the chat terminal output in the Accessible View.'),
description: localize('verbosity.inlineCompletions.description','Provide information about how to access the inline completions hover and Accessible View.'),
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart.ts
+82-1Lines changed: 82 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,10 @@ import * as domSanitize from '../../../../../../base/browser/domSanitize.js';
exportconstinChatInput=newRawContextKey<boolean>('inChatInput',false,{type: 'boolean',description: localize('inInteractiveInput',"True when focus is in the chat input, false otherwise.")});
34
34
exportconstinChatSession=newRawContextKey<boolean>('inChat',false,{type: 'boolean',description: localize('inChat',"True when focus is in the chat widget, false otherwise.")});
35
35
exportconstinChatEditor=newRawContextKey<boolean>('inChatEditor',false,{type: 'boolean',description: localize('inChatEditor',"Whether focus is in a chat editor.")});
36
+
exportconstinChatTerminalToolOutput=newRawContextKey<boolean>('inChatTerminalToolOutput',false,{type: 'boolean',description: localize('inChatTerminalToolOutput',"True when focus is in the chat terminal output region.")});
36
37
exportconsthasPromptFile=newRawContextKey<boolean>('chatPromptFileAttached',false,{type: 'boolean',description: localize('chatPromptFileAttachedContextDescription',"True when the chat has a prompt file attached.")});
37
38
exportconstchatModeKind=newRawContextKey<ChatModeKind>('chatAgentKind',ChatModeKind.Ask,{type: 'string',description: localize('agentKind',"The 'kind' of the current agent.")});
38
39
exportconstchatToolCount=newRawContextKey<number>('chatToolCount',0,{type: 'number',description: localize('chatToolCount',"The number of tools available in the current agent.")});
this._ariaLabel=ariaLabel.concat(localize('disableHint',' Toggle {0} in settings to disable this hint.',AccessibilityVerbositySettingId.TerminalChat));
326
+
this._ariaLabel=ariaLabel.concat(localize('disableHint',' Toggle {0} in settings to disable this hint.',AccessibilityVerbositySettingId.TerminalInlineChat));
0 commit comments