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 3f70236 commit 94784ccCopy full SHA for 94784cc
editors/code/src/client.ts
@@ -15,7 +15,13 @@ export function createClient(config: Config): lc.LanguageClient {
15
16
const command = expandPathResolving(config.raLspServerPath);
17
if (spawnSync(command, ["--version"]).status !== 0) {
18
- window.showErrorMessage(`Unable to execute '${command} --version'`);
+ window.showErrorMessage(
19
+ `Unable to execute '${command} --version'
20
+
21
+Perhaps it is not in $PATH?
22
23
+PATH=${process.env.PATH}
24
+`);
25
}
26
const run: lc.Executable = {
27
command,
0 commit comments