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
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/chat/browser/actions/chatAccessibilityHelp.ts
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -23,10 +23,6 @@ export function getAccessibilityHelpText(accessor: ServicesAccessor, type: 'chat
23
23
if(type==='chat'){
24
24
content.push(descriptionForCommand('chat.action.focus',localize('workbench.action.chat.focus','The Focus Chat command ({0}) focuses the chat request/response list, which can be navigated with UpArrow/DownArrow.',),localize('workbench.action.chat.focusNoKb','The Focus Chat List command focuses the chat request/response list, which can be navigated with UpArrow/DownArrow and is currently not triggerable by a keybinding.'),keybindingService));
25
25
content.push(descriptionForCommand('workbench.action.chat.focusInput',localize('workbench.action.chat.focusInput','The Focus Chat Input command ({0}) focuses the input box for chat requests.'),localize('workbench.action.interactiveSession.focusInputNoKb','Focus Chat Input command focuses the input box for chat requests and is currently not triggerable by a keybinding.'),keybindingService));
26
-
content.push('Chat responses may contain code blocks which can be tabbed to. Use typical editor keybindings to select and copy text. To further interact with these code blocks, run the following commands:');
27
-
content.push(descriptionForCommand('workbench.action.chat.insertCodeBlock',localize('workbench.action.chat.insertCodeBlock','Insert Code Block ({0}) inserts the code at the current cursor location in last active editor'),localize('workbench.action.chat.insertCodeBlockNoKb','Insert Code Block inserts the code at the current cursor location and is currently not triggerable by a keybinding.'),keybindingService));
28
-
content.push(descriptionForCommand('workbench.action.chat.insertIntoNewFile',localize('workbench.action.chat.insertIntoNewFile','Insert into New File ({0}) creates a new file with the code block as its content'),localize('workbench.action.chat.insertIntoNewFileNoKb','Insert into New File creates a new file with the code block as its content and is currently not triggerable by a keybinding.'),keybindingService));
29
-
content.push(descriptionForCommand('workbench.action.chat.runInTerminal',localize('workbench.action.chat.runInTerminal','Run in Terminal ({0}) runs the code block in the terminal'),localize('workbench.action.chat.runInTerminalNoKb','Run in Terminal runs the code block in the terminal and is currently not triggerable by a keybinding.'),keybindingService));
30
26
}else{
31
27
content.push(localize('interactiveSession.makeRequest',"Tab once to reach the make request button, which will re-run the request."));
ariaLabel: this._configurationService.getValue(AccessibilityVerbositySettingId.Chat) ? localize('chat.codeBlockHelp','Code block, to discover ways this can be interacted with, search the command palette for Chat: Insert and Chat: Run.') : localize('chat.codeBlock','Code block'),
toolbarElt.ariaLabel=this._configurationService.getValue(AccessibilityVerbositySettingId.Chat) ? localize('chat.codeBlock.toolbarVerbose','Toolbar for code block which can be reached via tab') : localize('chat.codeBlock.toolbar','Code block toolbar');
0 commit comments