Fix lruCapacity config setting type

This commit is contained in:
Marco Groppo 2020-01-11 13:30:02 +01:00
parent 991b62a4f9
commit 08fa0151ed

View file

@ -217,7 +217,10 @@
"description": "Trace requests to the ra_lsp_server"
},
"rust-analyzer.lruCapacity": {
"type": "number",
"type": [
"number",
"null"
],
"default": null,
"description": "Number of syntax trees rust-analyzer keeps in memory"
},