Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/ctx.ts')
-rw-r--r--editors/code/src/ctx.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts
index c2dca733df..5515921ed1 100644
--- a/editors/code/src/ctx.ts
+++ b/editors/code/src/ctx.ts
@@ -82,6 +82,7 @@ export class Ctx {
private state: PersistentState;
private commandFactories: Record<string, CommandFactory>;
private commandDisposables: Disposable[];
+ private unlinkedFiles: vscode.Uri[];
get client() {
return this._client;
@@ -99,6 +100,7 @@ export class Ctx {
this.clientSubscriptions = [];
this.commandDisposables = [];
this.commandFactories = commandFactories;
+ this.unlinkedFiles = [];
this.state = new PersistentState(extCtx.globalState);
this.config = new Config(extCtx);
@@ -218,7 +220,8 @@ export class Ctx {
this.outputChannel,
initializationOptions,
serverOptions,
- this.config
+ this.config,
+ this.unlinkedFiles
);
this.pushClientCleanup(
this._client.onNotification(ra.serverStatus, (params) =>