diff options
| author | Lukas Wirth <lukastw97@gmail.com> | 2022-05-12 12:29:40 +0200 |
|---|---|---|
| committer | Lukas Wirth <lukastw97@gmail.com> | 2022-05-12 12:30:00 +0200 |
| commit | 84176f6b247bb549da064b68935e763aa751b112 (patch) | |
| tree | dc1c315e52410fd4bd04daec9384089f4b6173cb /editors/code/package.json | |
| parent | d12130797741edf8d9c6a0233001eb10a11579b3 (diff) | |
| download | rust-84176f6b247bb549da064b68935e763aa751b112.tar.gz rust-84176f6b247bb549da064b68935e763aa751b112.zip | |
internal: Rename primeCaches config keys
Diffstat (limited to 'editors/code/package.json')
| -rw-r--r-- | editors/code/package.json | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 5fedbc8a2e7..86766872a32 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -381,6 +381,18 @@ "Fill missing expressions with reasonable defaults, `new` or `default` constructors." ] }, + "rust-analyzer.cachePriming.enable": { + "markdownDescription": "Warm up caches on project load.", + "default": true, + "type": "boolean" + }, + "rust-analyzer.cachePriming.numThreads": { + "markdownDescription": "How many worker threads to to handle priming caches. The default `0` means to pick automatically.", + "default": 0, + "type": "number", + "minimum": 0, + "maximum": 255 + }, "rust-analyzer.cargo.autoreload": { "markdownDescription": "Automatically refresh project info via `cargo metadata` on\n`Cargo.toml` or `.cargo/config.toml` changes.", "default": true, @@ -918,18 +930,6 @@ "default": true, "type": "boolean" }, - "rust-analyzer.primeCaches.enable": { - "markdownDescription": "Warm up caches on project load.", - "default": true, - "type": "boolean" - }, - "rust-analyzer.primeCaches.numThreads": { - "markdownDescription": "How many worker threads to to handle priming caches. The default `0` means to pick automatically.", - "default": 0, - "type": "number", - "minimum": 0, - "maximum": 255 - }, "rust-analyzer.procMacro.attributes.enable": { "markdownDescription": "Expand attribute macros. Requires `#rust-analyzer.procMacro.enable#` to be set.", "default": true, |
