Skip to content

Commit fd6a98e

Browse files
author
Veetaha
committed
vscode: rename raLspServer variable to langServer
1 parent 8f291c0 commit fd6a98e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

editors/code/src/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ export class Config {
8686
ctx: vscode.ExtensionContext,
8787
config: vscode.WorkspaceConfiguration
8888
): null | BinarySource {
89-
const raLspServerPath = RA_LSP_DEBUG ?? config.get<null | string>("raLspServerPath");
89+
const langServerPath = RA_LSP_DEBUG ?? config.get<null | string>("raLspServerPath");
9090

91-
if (raLspServerPath) {
91+
if (langServerPath) {
9292
return {
9393
type: BinarySource.Type.ExplicitPath,
94-
path: Config.expandPathResolving(raLspServerPath)
94+
path: Config.expandPathResolving(langServerPath)
9595
};
9696
}
9797

0 commit comments

Comments
 (0)