dont restrict to ipynb (#232872)

pull/232909/head
Aaron Munger 2024-11-01 15:35:47 -07:00 committed by GitHub
parent c914444241
commit d645ca1cd3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ export class NotebookAccessibleView implements IAccessibleViewImplentation {
readonly priority = 100;
readonly name = 'notebook';
readonly type = AccessibleViewType.View;
readonly when = ContextKeyExpr.and(NOTEBOOK_OUTPUT_FOCUSED, ContextKeyExpr.equals('resourceExtname', '.ipynb'));
readonly when = ContextKeyExpr.and(NOTEBOOK_OUTPUT_FOCUSED);
getProvider(accessor: ServicesAccessor) {
const editorService = accessor.get(IEditorService);
return getAccessibleOutputProvider(editorService);