We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f291c0 commit fd6a98eCopy full SHA for fd6a98e
editors/code/src/config.ts
@@ -86,12 +86,12 @@ export class Config {
86
ctx: vscode.ExtensionContext,
87
config: vscode.WorkspaceConfiguration
88
): null | BinarySource {
89
- const raLspServerPath = RA_LSP_DEBUG ?? config.get<null | string>("raLspServerPath");
+ const langServerPath = RA_LSP_DEBUG ?? config.get<null | string>("raLspServerPath");
90
91
- if (raLspServerPath) {
+ if (langServerPath) {
92
return {
93
type: BinarySource.Type.ExplicitPath,
94
- path: Config.expandPathResolving(raLspServerPath)
+ path: Config.expandPathResolving(langServerPath)
95
};
96
}
97
0 commit comments