diff options
| author | Veetaha <gerzoh1@gmail.com> | 2020-02-09 00:42:51 +0200 |
|---|---|---|
| committer | Veetaha <gerzoh1@gmail.com> | 2020-02-09 00:42:51 +0200 |
| commit | fd6a98ef6e8cb3ee4d578bf90ad327df548dd1c5 (patch) | |
| tree | fb35f17b5d07a662b8e1ac6fe455333f5d8d8b66 /editors/code/src | |
| parent | 8f291c0089700ab17fafddde33dc12515ba45662 (diff) | |
| download | rust-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.ts | 6 |
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) }; } |
