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
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -34,11 +34,10 @@ export function getAccessibilityHelpText(accessor: ServicesAccessor, type: 'pane
34
34
if(upHistoryKeybinding&&downHistoryKeybinding){
35
35
content.push(localize('inlineChat.requestHistory','In the input box, use {0} and {1} to navigate your request history. Edit input and use enter or the submit button to run a new request.',upHistoryKeybinding,downHistoryKeybinding));
36
36
}
37
-
content.push(localize('inlineChat.contextActions',"Context menu actions may run a request prefixed with /fix or /explain. Type / to discover more ready-made commands."));
38
-
content.push(localize('inlineChat.fix',"When a request is prefixed with /fix, a response will indicate the problem with the current code. A diff editor will be rendered and can be reached by tabbing."));
37
+
content.push(localize('inlineChat.contextActions',"Context menu actions may run a request prefixed with a /. Type / to discover such ready-made commands."));
38
+
content.push(localize('inlineChat.fix',"If a fix action is invoked, a response will indicate the problem with the current code. A diff editor will be rendered and can be reached by tabbing."));
content.push(diffReviewKeybinding ? localize('inlineChat.diff',"Once in the diff editor, enter review mode with ({0}). Use up and down arrows to navigate lines with the proposed changes.",diffReviewKeybinding) : localize('inlineChat.diffNoKb',"Tab again to enter the Diff editor with the changes and enter review mode with the Go to Next Difference Command. Use Up/DownArrow to navigate lines with the proposed changes."));
41
-
content.push(localize('inlineChat.explain',"When a request is prefixed with /explain, a response will explain the code in the current selection and the chat view will be focused."));
42
41
content.push(localize('inlineChat.toolbar',"Use tab to reach conditional parts like commands, status, message responses and more."));
43
42
}
44
43
content.push(localize('chat.audioCues',"Audio cues can be changed via settings with a prefix of audioCues.chat. By default, if a request takes more than 4 seconds, you will hear an audio cue indicating that progress is still occurring."));
0 commit comments