mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 21:28:51 +00:00
Fixed formatting
This commit is contained in:
parent
1152e27520
commit
689ebb98be
1 changed files with 2 additions and 2 deletions
|
@ -404,9 +404,9 @@ async function queryForGithubToken(state: PersistentState): Promise<void> {
|
||||||
function warnAboutRustLangExtensionConflict() {
|
function warnAboutRustLangExtensionConflict() {
|
||||||
const rustLangExt = vscode.extensions.getExtension("rust-lang.rust");
|
const rustLangExt = vscode.extensions.getExtension("rust-lang.rust");
|
||||||
if (rustLangExt !== undefined) {
|
if (rustLangExt !== undefined) {
|
||||||
vscode.window .showWarningMessage(
|
vscode.window.showWarningMessage(
|
||||||
"You have both rust-analyzer (matklad.rust-analyzer) and Rust (rust-lang.rust) " +
|
"You have both rust-analyzer (matklad.rust-analyzer) and Rust (rust-lang.rust) " +
|
||||||
"plugins enabled. These are known to conflict and cause various functions of " +
|
"plugins enabled. These are known to conflict and cause various functions of " +
|
||||||
"both plugins to not work correctly. You should disable one of them.", "Got it")
|
"both plugins to not work correctly. You should disable one of them.", "Got it");
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue