aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-03-08 16:58:02 +0000
committerVeetaha <[email protected]>2020-03-08 16:58:02 +0000
commit6bd1ff16e5e517c89a154b9b26847d20656e1184 (patch)
tree68958b95faf5dad2bf3fd0f7457903a2cdeeed61 /editors/code/package.json
parent49b4e88458561986009f3cb9dee8879a0649049e (diff)
vscode: rename alwaysDownloadServer -> askBeforeDownload
The new name seems much simpler and it doesn't limit this config value only to downloading the server binary. Thus we wouldn't need to create another config properties to handle other downloads whatsoever. Anyway, I believe (heuristically) that most of the users would want to set "askBeforeDownload": false once and never bother clicking on the notification again (because otherwise there is no big point in installing rust-analyzer if it cannot install the server)
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 7bcd45e15..430a61c64 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -219,10 +219,10 @@
219 } 219 }
220 } 220 }
221 }, 221 },
222 "rust-analyzer.alwaysDownloadServer": { 222 "rust-analyzer.askBeforeDownload": {
223 "type": "boolean", 223 "type": "boolean",
224 "default": false, 224 "default": true,
225 "description": "Whether to ask before downloading the language server binary" 225 "description": "Whether to ask for permission before downloading any files from the Internet"
226 }, 226 },
227 "rust-analyzer.serverPath": { 227 "rust-analyzer.serverPath": {
228 "type": [ 228 "type": [