aboutsummaryrefslogtreecommitdiff
path: root/editors/code
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-02-08 22:42:51 +0000
committerVeetaha <[email protected]>2020-02-08 22:42:51 +0000
commitfd6a98ef6e8cb3ee4d578bf90ad327df548dd1c5 (patch)
treefb35f17b5d07a662b8e1ac6fe455333f5d8d8b66 /editors/code
parent8f291c0089700ab17fafddde33dc12515ba45662 (diff)
vscode: rename raLspServer variable to langServer
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