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 1152e27 commit 689ebb9Copy full SHA for 689ebb9
editors/code/src/main.ts
@@ -404,9 +404,9 @@ async function queryForGithubToken(state: PersistentState): Promise<void> {
404
function warnAboutRustLangExtensionConflict() {
405
const rustLangExt = vscode.extensions.getExtension("rust-lang.rust");
406
if (rustLangExt !== undefined) {
407
- vscode.window .showWarningMessage(
+ vscode.window.showWarningMessage(
408
"You have both rust-analyzer (matklad.rust-analyzer) and Rust (rust-lang.rust) " +
409
"plugins enabled. These are known to conflict and cause various functions of " +
410
- "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");
411
};
412
}
0 commit comments