mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 05:38:46 +00:00
Merge #7914
7914: Make code completion "just work" in more cases r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
64e95eee3a
3 changed files with 3 additions and 3 deletions
|
@ -49,7 +49,7 @@ config_data! {
|
|||
cargo_features: Vec<String> = "[]",
|
||||
/// Run build scripts (`build.rs`) for more precise code analysis.
|
||||
cargo_runBuildScripts |
|
||||
cargo_loadOutDirsFromCheck: bool = "false",
|
||||
cargo_loadOutDirsFromCheck: bool = "true",
|
||||
/// Do not activate the `default` feature.
|
||||
cargo_noDefaultFeatures: bool = "false",
|
||||
/// Compilation target (target triple).
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
Activate all available features (`--all-features`).
|
||||
[[rust-analyzer.cargo.features]]rust-analyzer.cargo.features (default: `[]`)::
|
||||
List of features to activate.
|
||||
[[rust-analyzer.cargo.runBuildScripts]]rust-analyzer.cargo.runBuildScripts (default: `false`)::
|
||||
[[rust-analyzer.cargo.runBuildScripts]]rust-analyzer.cargo.runBuildScripts (default: `true`)::
|
||||
Run build scripts (`build.rs`) for more precise code analysis.
|
||||
[[rust-analyzer.cargo.noDefaultFeatures]]rust-analyzer.cargo.noDefaultFeatures (default: `false`)::
|
||||
Do not activate the `default` feature.
|
||||
|
|
|
@ -416,7 +416,7 @@
|
|||
},
|
||||
"rust-analyzer.cargo.runBuildScripts": {
|
||||
"markdownDescription": "Run build scripts (`build.rs`) for more precise code analysis.",
|
||||
"default": false,
|
||||
"default": true,
|
||||
"type": "boolean"
|
||||
},
|
||||
"rust-analyzer.cargo.noDefaultFeatures": {
|
||||
|
|
Loading…
Reference in a new issue