feat: Allow cargo check to run on only the current package

This commit is contained in:
Lukas Wirth 2024-02-08 10:40:42 +01:00
parent bcc8a09a0d
commit 0258f60cfe
7 changed files with 68 additions and 28 deletions

View file

@ -803,6 +803,11 @@
}
]
},
"rust-analyzer.check.workspace": {
"markdownDescription": "Whether `--workspace` should be passed to `cargo check`.\nIf false, `-p <package>` will be passed instead.",
"default": true,
"type": "boolean"
},
"rust-analyzer.completion.autoimport.enable": {
"markdownDescription": "Toggles the additional completions that automatically add imports when completed.\nNote that your client must specify the `additionalTextEdits` LSP client capability to truly have this feature enabled.",
"default": true,