From 8285a3f93f88b835f26ea974f2e723cb03687e9b Mon Sep 17 00:00:00 2001 From: Vinicius Stock Date: Mon, 8 Jul 2024 15:31:20 -0400 Subject: [PATCH] Make the first workspace the main one even when lazy --- vscode/src/rubyLsp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode/src/rubyLsp.ts b/vscode/src/rubyLsp.ts index 7138164c9..e49528067 100644 --- a/vscode/src/rubyLsp.ts +++ b/vscode/src/rubyLsp.ts @@ -168,7 +168,7 @@ export class RubyLsp { workspaceFolder, this.telemetry, this.testController.createTestItems.bind(this.testController), - eager, + this.workspaces.size === 0, ); this.workspaces.set(workspaceFolder.uri.toString(), workspace);