mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
vscode: refactor levels of code nesting and string literals quotes
This commit is contained in:
parent
a3e3fba7bf
commit
3159e87c49
1 changed files with 32 additions and 28 deletions
|
@ -71,9 +71,10 @@ export async function ensureLanguageServerBinary(
|
|||
if (isBinaryAvailable(langServerSource.path)) {
|
||||
return langServerSource.path;
|
||||
}
|
||||
|
||||
vscode.window.showErrorMessage(
|
||||
`Unable to run ${langServerSource.path} binary. ` +
|
||||
"To use the pre-built language server, set `rust-analyzer.raLspServerPath` " +
|
||||
`To use the pre-built language server, set "rust-analyzer.raLspServerPath" ` +
|
||||
"value to `null` or remove it from the settings to use it by default."
|
||||
);
|
||||
return null;
|
||||
|
@ -81,7 +82,10 @@ export async function ensureLanguageServerBinary(
|
|||
case BinarySource.Type.GithubRelease: {
|
||||
const prebuiltBinaryPath = path.join(langServerSource.dir, langServerSource.file);
|
||||
|
||||
if (!isBinaryAvailable(prebuiltBinaryPath)) {
|
||||
if (isBinaryAvailable(prebuiltBinaryPath)) {
|
||||
return prebuiltBinaryPath;
|
||||
}
|
||||
|
||||
const userResponse = await vscode.window.showInformationMessage(
|
||||
"Language server binary for rust-analyzer was not found. " +
|
||||
"Do you want to download it now?",
|
||||
|
@ -108,7 +112,7 @@ export async function ensureLanguageServerBinary(
|
|||
vscode.window.showInformationMessage(
|
||||
"Rust analyzer language server was successfully installed 🦀"
|
||||
);
|
||||
}
|
||||
|
||||
return prebuiltBinaryPath;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue