mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 16:18:58 +01:00
Merge branch 'main' into joh/notebookDocumentEvents
This commit is contained in:
@@ -223,9 +223,6 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
|
||||
if (typeof filter.exclusive === 'boolean') {
|
||||
checkProposedApiEnabled(extension, 'documentFiltersExclusive');
|
||||
}
|
||||
if (typeof filter.notebookType === 'string') {
|
||||
checkProposedApiEnabled(extension, 'notebookDocumentSelector');
|
||||
}
|
||||
}
|
||||
return selector;
|
||||
};
|
||||
@@ -652,9 +649,6 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
|
||||
return extHostProgress.withProgress(extension, options, task);
|
||||
},
|
||||
createOutputChannel(name: string, languageId?: string): vscode.OutputChannel {
|
||||
if (languageId) {
|
||||
checkProposedApiEnabled(extension, 'outputChannelLanguage');
|
||||
}
|
||||
return extHostOutputService.createOutputChannel(name, languageId, extension);
|
||||
},
|
||||
createWebviewPanel(viewType: string, title: string, showOptions: vscode.ViewColumn | { viewColumn: vscode.ViewColumn; preserveFocus?: boolean }, options?: vscode.WebviewPanelOptions & vscode.WebviewOptions): vscode.WebviewPanel {
|
||||
|
||||
Reference in New Issue
Block a user