From 5201a4bce99b069a6c9c49545f02c216be234d8e Mon Sep 17 00:00:00 2001 From: Megan Rogge Date: Mon, 26 Aug 2024 11:30:00 -0700 Subject: [PATCH] improve & move debug console info up in help dialog (#226635) --- .../contrib/debug/browser/runAndDebugAccessibilityHelp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.ts b/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.ts index 01b912abf1e..fd4e37133f4 100644 --- a/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.ts +++ b/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.ts @@ -70,6 +70,7 @@ class RunAndDebugAccessibilityHelpProvider extends Disposable implements IAccess return [ localize('debug.showRunAndDebug', "The Show Run and Debug view command{0} will open the current view.", ''), localize('debug.startDebugging', "The Debug: Start Debugging command{0} will start a debug session.", ''), + localize('debug.help', "Access debug output and evaluate expressions in the debug console, which can be focused with{0}.", ''), AccessibilityHelpNLS.setBreakpoint, AccessibilityHelpNLS.addToWatch, localize('onceDebugging', "Once debugging, the following commands will be available:"), @@ -84,7 +85,6 @@ class RunAndDebugAccessibilityHelpProvider extends Disposable implements IAccess localize('debug.focusCallStack', "- Debug: Focus Call Stack View command{0} will focus the call stack view.", ''), localize('debug.focusVariables', "- Debug: Focus Variables View command{0} will focus the variables view.", ''), localize('debug.focusWatch', "- Debug: Focus Watch View command{0} will focus the watch view.", ''), - localize('debug.help', "The debug console is a Read-Eval-Print-Loop that allows you to evaluate expressions and run commands and can be focused with{0}.", ''), localize('debug.watchSetting', "The setting {0} controls whether watch variable changes are announced.", 'accessibility.debugWatchVariableAnnouncements'), ].join('\n'); }