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 3835b37 commit 8b304a7Copy full SHA for 8b304a7
editors/code/src/main.ts
@@ -30,11 +30,6 @@ async function tryActivate(context: vscode.ExtensionContext) {
30
const serverPath = await bootstrap(context, config, state).catch(err => {
31
let message = "bootstrap error. ";
32
33
- if (err.code === "EBUSY" || err.code === "ETXTBSY" || err.code === "EPERM") {
34
- message += "Other vscode windows might be using rust-analyzer, ";
35
- message += "you should close them and reload this window to retry. ";
36
- }
37
-
38
message += 'See the logs in "OUTPUT > Rust Analyzer Client" (should open automatically). ';
39
message += 'To enable verbose logs use { "rust-analyzer.trace.extension": true }';
40
0 commit comments