aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src
diff options
context:
space:
mode:
authorPrzemyslaw Horban <[email protected]>2020-12-18 17:47:03 +0000
committerPrzemyslaw Horban <[email protected]>2020-12-18 17:47:03 +0000
commit689ebb98be043182a694c40e963842fb913fe33e (patch)
treed720c1bf65987dbf000bf96a35eb8a962a42f6fb /editors/code/src
parent1152e27520c9b7c2845d454903c0b72cda01afda (diff)
Fixed formatting
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/main.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index 1c88b4613..191960960 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -404,9 +404,9 @@ async function queryForGithubToken(state: PersistentState): Promise<void> {
404function warnAboutRustLangExtensionConflict() { 404function warnAboutRustLangExtensionConflict() {
405 const rustLangExt = vscode.extensions.getExtension("rust-lang.rust"); 405 const rustLangExt = vscode.extensions.getExtension("rust-lang.rust");
406 if (rustLangExt !== undefined) { 406 if (rustLangExt !== undefined) {
407 vscode.window .showWarningMessage( 407 vscode.window.showWarningMessage(
408 "You have both rust-analyzer (matklad.rust-analyzer) and Rust (rust-lang.rust) " + 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 " + 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") 410 "both plugins to not work correctly. You should disable one of them.", "Got it");
411 }; 411 };
412} 412}