aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
Diffstat (limited to 'editors')
-rw-r--r--editors/code/package.json12
1 files changed, 6 insertions, 6 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 0cc265aa4..f35d30898 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -382,17 +382,17 @@
382 "$generated-start": false, 382 "$generated-start": false,
383 "rust-analyzer.assist.importMergeBehavior": { 383 "rust-analyzer.assist.importMergeBehavior": {
384 "markdownDescription": "The strategy to use when inserting new imports or merging imports.", 384 "markdownDescription": "The strategy to use when inserting new imports or merging imports.",
385 "default": "full", 385 "default": "crate",
386 "type": "string", 386 "type": "string",
387 "enum": [ 387 "enum": [
388 "none", 388 "none",
389 "full", 389 "crate",
390 "last" 390 "module"
391 ], 391 ],
392 "enumDescriptions": [ 392 "enumDescriptions": [
393 "No merging", 393 "Do not merge imports at all.",
394 "Merge all layers of the import trees", 394 "Merge imports from the same crate into a single `use` statement.",
395 "Only merge the last layer of the import trees" 395 "Merge imports from the same module into a single `use` statement."
396 ] 396 ]
397 }, 397 },
398 "rust-analyzer.assist.importPrefix": { 398 "rust-analyzer.assist.importPrefix": {