aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/ctx.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/ctx.ts')
-rw-r--r--editors/code/src/ctx.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts
index f0e2d72f7..70042a479 100644
--- a/editors/code/src/ctx.ts
+++ b/editors/code/src/ctx.ts
@@ -31,7 +31,10 @@ export class Ctx {
31 this.client = null; 31 this.client = null;
32 const client = await createClient(this.config); 32 const client = await createClient(this.config);
33 if (!client) { 33 if (!client) {
34 throw new Error("Rust Analyzer Language Server is not available"); 34 throw new Error(
35 "Rust Analyzer Language Server is not available. " +
36 "Please, ensure its [proper installation](https://github.com/rust-analyzer/rust-analyzer/tree/master/docs/user#vs-code)."
37 );
35 } 38 }
36 39
37 this.pushCleanup(client.start()); 40 this.pushCleanup(client.start());