You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After refactoring the config we forgot to set defaults for
some properties like workspaceLoaded, callInfo.full, etc.
This commit restored them to being turned on by defult,
as well added defaults for other props to be more explicit
on their defualt value.
"markdownDescription": "Whether to show `can't find Cargo.toml` error message"
219
221
},
220
222
"rust-analyzer.cargo.noDefaultFeatures": {
@@ -253,6 +255,7 @@
253
255
"items": {
254
256
"type": "string"
255
257
},
258
+
"default": [],
256
259
"markdownDescription": "Advanced option, fully override the command rust-analyzer uses for formatting."
257
260
},
258
261
"rust-analyzer.checkOnSave.enable": {
@@ -278,6 +281,7 @@
278
281
"items": {
279
282
"type": "string"
280
283
},
284
+
"default": [],
281
285
"markdownDescription": "Advanced option, fully override the command rust-analyzer uses for checking. The command should include `--message=format=json` or similar option."
282
286
},
283
287
"rust-analyzer.checkOnSave.allTargets": {
@@ -327,6 +331,7 @@
327
331
},
328
332
"rust-analyzer.callInfo.full": {
329
333
"type": "boolean",
334
+
"default": true,
330
335
"description": "Show function name and docs in parameter hints"
0 commit comments