about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
authorVeetaha <gerzoh1@gmail.com>2020-02-09 00:42:51 +0200
committerVeetaha <gerzoh1@gmail.com>2020-02-09 00:42:51 +0200
commitfd6a98ef6e8cb3ee4d578bf90ad327df548dd1c5 (patch)
treefb35f17b5d07a662b8e1ac6fe455333f5d8d8b66 /editors/code/src
parent8f291c0089700ab17fafddde33dc12515ba45662 (diff)
downloadrust-fd6a98ef6e8cb3ee4d578bf90ad327df548dd1c5.tar.gz
rust-fd6a98ef6e8cb3ee4d578bf90ad327df548dd1c5.zip
vscode: rename raLspServer variable to langServer
Diffstat (limited to 'editors/code/src')
-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 5aed8c9f326..46394600b02 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -86,12 +86,12 @@ export class Config {
         ctx: vscode.ExtensionContext,
         config: vscode.WorkspaceConfiguration
     ): null | BinarySource {
-        const raLspServerPath = RA_LSP_DEBUG ?? config.get<null | string>("raLspServerPath");
+        const langServerPath = RA_LSP_DEBUG ?? config.get<null | string>("raLspServerPath");
 
-        if (raLspServerPath) {
+        if (langServerPath) {
             return {
                 type: BinarySource.Type.ExplicitPath,
-                path: Config.expandPathResolving(raLspServerPath)
+                path: Config.expandPathResolving(langServerPath)
             };
         }