From bebeb7f4bcfb3e2cb56240030f031faefa971acd Mon Sep 17 00:00:00 2001 From: meganrogge Date: Tue, 16 May 2023 10:21:13 -0700 Subject: [PATCH] add default case --- .../browser/actions/interactiveSessionAccessibilityHelp.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionAccessibilityHelp.ts b/src/vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionAccessibilityHelp.ts index 5e8382b779f..ff7f95f66c1 100644 --- a/src/vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionAccessibilityHelp.ts +++ b/src/vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionAccessibilityHelp.ts @@ -34,7 +34,11 @@ export function getAccessibilityHelpText(keybindingService: IKeybindingService, content.push(localize('interactiveSession.acceptReject', "Tab again to reach the accept/reject buttons, which will accept or reject the change.")); break; case 'explain': - // TODO once we've decided on an approach + // TODO: once we've decided on an approach + break; + default: + content.push(localize('interactiveSession.toolbar', "Tab again to reach the toolbar.")); + content.push(localize('interactiveSession.toolbarButtons', "Tab again to focus the response.")); break; } }