We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e9661b commit 3cc80d5Copy full SHA for 3cc80d5
packages/jupyterlab-lsp/src/adapters/fileeditor.ts
@@ -30,6 +30,16 @@ export class FileEditorAdapter extends UpstreamFileEditorAdapter {
30
super(editorWidget, options);
31
}
32
33
+ protected async initOnceReady(): Promise<void> {
34
+ await super.initOnceReady();
35
+ // Workaround for
36
+ // https://github.com/jupyterlab/jupyterlab/issues/15868
37
+ // remove once fixed upstream
38
+ this._editorAdded.emit({
39
+ editor: this.activeEditor
40
+ });
41
+ }
42
+
43
/**
44
* Generate the virtual document associated with the document.
45
*/
0 commit comments