diff options
| author | Przemyslaw Horban <p.horban@invinets.com> | 2020-12-18 18:47:03 +0100 |
|---|---|---|
| committer | Przemyslaw Horban <p.horban@invinets.com> | 2020-12-18 18:47:03 +0100 |
| commit | 689ebb98be043182a694c40e963842fb913fe33e (patch) | |
| tree | d720c1bf65987dbf000bf96a35eb8a962a42f6fb | |
| parent | 1152e27520c9b7c2845d454903c0b72cda01afda (diff) | |
| download | rust-689ebb98be043182a694c40e963842fb913fe33e.tar.gz rust-689ebb98be043182a694c40e963842fb913fe33e.zip | |
Fixed formatting
| -rw-r--r-- | editors/code/src/main.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index 1c88b46135e..191960960a3 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts @@ -404,9 +404,9 @@ async function queryForGithubToken(state: PersistentState): Promise<void> { function warnAboutRustLangExtensionConflict() { const rustLangExt = vscode.extensions.getExtension("rust-lang.rust"); if (rustLangExt !== undefined) { - vscode.window .showWarningMessage( + vscode.window.showWarningMessage( "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 " + - "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"); }; } |
