aboutsummaryrefslogtreecommitdiff
path: root/editors/code
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-02-16 16:00:49 +0000
committerVeetaha <[email protected]>2020-02-16 16:00:49 +0000
commit56b64cac9cbac47e3cf3b04c8cf8e418564e12bd (patch)
tree7d4c7436e866c82cddd464bafb6eb3ef6db08402 /editors/code
parent0565657ed1b51e90f7876158d7b484db1a6c46b2 (diff)
vscode: added minimum bound for lruCapacity option
Diffstat (limited to 'editors/code')
-rw-r--r--editors/code/package.json2
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 97f2e63cd..ed1cae2ab 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -235,6 +235,8 @@
235 "rust-analyzer.lruCapacity": { 235 "rust-analyzer.lruCapacity": {
236 "type": [ "null", "integer" ], 236 "type": [ "null", "integer" ],
237 "default": null, 237 "default": null,
238 "minimum": 0,
239 "exclusiveMinimum": true,
238 "description": "Number of syntax trees rust-analyzer keeps in memory" 240 "description": "Number of syntax trees rust-analyzer keeps in memory"
239 }, 241 },
240 "rust-analyzer.displayInlayHints": { 242 "rust-analyzer.displayInlayHints": {