Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit cdfeeb2

Browse files
committed
Limit scope of few extension-specific settings to machine
1 parent 404ef46 commit cdfeeb2

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
### Unreleased
22

3+
* Limit scope of few extension-specific settings to `machine`
34
* Bump required VSCode to 1.36
45
* Change `thread::spawn` snippet to activate on `thread_spawn` prefix
56
* Use dynamic `wait_to_build` in RLS by default rather than setting it to 1500ms

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,8 @@
154154
"rust-client.rustupPath": {
155155
"type": "string",
156156
"default": "rustup",
157-
"description": "Path to rustup executable. Ignored if rustup is disabled."
157+
"description": "Path to rustup executable. Ignored if rustup is disabled.",
158+
"scope": "machine"
158159
},
159160
"rust-client.useWSL": {
160161
"type": "boolean",
@@ -167,7 +168,8 @@
167168
"null"
168169
],
169170
"default": null,
170-
"description": "Override RLS path. Only required for RLS developers. If you set this and use rustup, you should also set `rust-client.channel` to ensure your RLS sees the right libraries. If you don't use rustup, make sure to set `rust-client.disableRustup`."
171+
"description": "Override RLS path. Only required for RLS developers. If you set this and use rustup, you should also set `rust-client.channel` to ensure your RLS sees the right libraries. If you don't use rustup, make sure to set `rust-client.disableRustup`.",
172+
"scope": "machine"
171173
},
172174
"rust-client.revealOutputChannelOn": {
173175
"type": "string",

0 commit comments

Comments
 (0)