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; } }