diff options
| author | Young-Flash <dongyang@apache.org> | 2024-02-04 18:37:09 +0800 |
|---|---|---|
| committer | Young-Flash <dongyang@apache.org> | 2024-02-04 18:37:09 +0800 |
| commit | bec1e0f616c49a976211fd2a608aeea14eb2ad15 (patch) | |
| tree | 7c93887c541be5fa0b65820abda5d8fa6fcd27a9 | |
| parent | 0113bc9388b480fa42c632f57f4f0f7af5813ec1 (diff) | |
| download | rust-bec1e0f616c49a976211fd2a608aeea14eb2ad15.tar.gz rust-bec1e0f616c49a976211fd2a608aeea14eb2ad15.zip | |
minor: polish warning msg
| -rw-r--r-- | editors/code/src/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index c386b9e5d8f..0af58fd7812 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts @@ -207,7 +207,7 @@ function checkConflictingExtensions() { if (vscode.extensions.getExtension("panicbit.cargo")) { vscode.window .showWarningMessage( - `You have both the rust-analyzer (rust-lang.rust-analyzer) and Cargo (panicbit.cargo) plugins enabled` + + `You have both the rust-analyzer (rust-lang.rust-analyzer) and Cargo (panicbit.cargo) plugins enabled, ` + 'you can disable it or set {"cargo.automaticCheck": false} in settings.json to avoid invoking cargo twice', "Got it", ) |
