diff options
| author | Mikhail Rakhmanov <rakhmanov.m@gmail.com> | 2020-06-03 19:26:01 +0200 |
|---|---|---|
| committer | Mikhail Rakhmanov <rakhmanov.m@gmail.com> | 2020-06-03 19:26:01 +0200 |
| commit | 6a0083a519680e8d16bde5d7c1940c8dd6d4e9d4 (patch) | |
| tree | 2b377141d722257cfea18e74b955aea1a8f6cc1a /editors/code | |
| parent | 1f7de306f547ecb394a34445fd6ac1d6bc8ab439 (diff) | |
| parent | 794f6da821c5d6e2490b996baffe162e4753262d (diff) | |
| download | rust-6a0083a519680e8d16bde5d7c1940c8dd6d4e9d4.tar.gz rust-6a0083a519680e8d16bde5d7c1940c8dd6d4e9d4.zip | |
Merge branch 'master' into compute-lazy-assits
# Conflicts: # crates/rust-analyzer/src/main_loop/handlers.rs # crates/rust-analyzer/src/to_proto.rs
Diffstat (limited to 'editors/code')
| -rw-r--r-- | editors/code/package.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index d8f4287fd88..30ab7ba4a9f 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -475,6 +475,25 @@ "markdownDescription": "Whether to show Implementations lens. Only applies when `#rust-analyzer.lens.enable#` is set.", "type": "boolean", "default": true + }, + "rust-analyzer.linkedProjects": { + "markdownDescription": [ + "Disable project auto-discovery in favor of explicitly specified set of projects.", + "Elements must be paths pointing to Cargo.toml, rust-project.json, or JSON objects in rust-project.json format" + ], + "type": "array", + "items": { + "type": [ + "string", + "object" + ] + }, + "default": null + }, + "rust-analyzer.withSysroot": { + "markdownDescription": "Internal config for debugging, disables loading of sysroot crates", + "type": "boolean", + "default": true } } }, |
