mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 04:44:57 +00:00
vscode: minor names and message contents changes
This commit is contained in:
parent
fd6a98ef6e
commit
d08ae7e82f
2 changed files with 12 additions and 9 deletions
|
@ -31,7 +31,10 @@ export class Ctx {
|
|||
this.client = null;
|
||||
const client = await createClient(this.config);
|
||||
if (!client) {
|
||||
throw new Error("Rust Analyzer Language Server is not available");
|
||||
throw new Error(
|
||||
"Rust Analyzer Language Server is not available. " +
|
||||
"Please, ensure its [proper installation](https://github.com/rust-analyzer/rust-analyzer/tree/master/docs/user#vs-code)."
|
||||
);
|
||||
}
|
||||
|
||||
this.pushCleanup(client.start());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue