提交 cd6fa35f 编写于 作者: R rebornix

fix #114233.

上级 add5b32d
......@@ -627,11 +627,12 @@ export class NotebookService extends Disposable implements INotebookService, ICu
}
async canResolve(viewType: string): Promise<boolean> {
await this._extensionService.activateByEvent(`onNotebook:*`);
if (!this._notebookProviders.has(viewType)) {
await this._extensionService.whenInstalledExtensionsRegistered();
// this awaits full activation of all matching extensions
await this._extensionService.activateByEvent(`onNotebook:${viewType}`);
await this._extensionService.activateByEvent(`onNotebook:*`);
if (this._notebookProviders.has(viewType)) {
return true;
} else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册