aboutsummaryrefslogtreecommitdiff
path: root/editors/code
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code')
-rw-r--r--editors/code/src/config.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index 5aed8c9f3..46394600b 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -86,12 +86,12 @@ export class Config {
86 ctx: vscode.ExtensionContext, 86 ctx: vscode.ExtensionContext,
87 config: vscode.WorkspaceConfiguration 87 config: vscode.WorkspaceConfiguration
88 ): null | BinarySource { 88 ): null | BinarySource {
89 const raLspServerPath = RA_LSP_DEBUG ?? config.get<null | string>("raLspServerPath"); 89 const langServerPath = RA_LSP_DEBUG ?? config.get<null | string>("raLspServerPath");
90 90
91 if (raLspServerPath) { 91 if (langServerPath) {
92 return { 92 return {
93 type: BinarySource.Type.ExplicitPath, 93 type: BinarySource.Type.ExplicitPath,
94 path: Config.expandPathResolving(raLspServerPath) 94 path: Config.expandPathResolving(langServerPath)
95 }; 95 };
96 } 96 }
97 97