fix. round 4

This commit is contained in:
Stanislav 2022-09-09 01:19:34 +03:00
parent ab0b64b26c
commit 773f9b38e3
2 changed files with 7 additions and 7 deletions

View file

@ -260,12 +260,12 @@ also need to add the folders to Code's `files.watcherExclude`.
[[rust-analyzer.files.watcher]]rust-analyzer.files.watcher (default: `"client"`)::
+
--
Find All References config.
Controls file watching implementation.
--
[[rust-analyzer.findAllRefs.excludeImports]]rust-analyzer.findAllRefs.excludeImports (default: `false`)::
+
--
Controls file watching implementation.
Exclude imports from find-all-references.
--
[[rust-analyzer.highlightRelated.breakPoints.enable]]rust-analyzer.highlightRelated.breakPoints.enable (default: `true`)::
+

View file

@ -706,6 +706,11 @@
"Use server-side file watching"
]
},
"rust-analyzer.findAllRefs.excludeImports": {
"markdownDescription": "Exclude imports from find-all-references.",
"default": false,
"type": "boolean"
},
"rust-analyzer.highlightRelated.breakPoints.enable": {
"markdownDescription": "Enables highlighting of related references while the cursor is on `break`, `loop`, `while`, or `for` keywords.",
"default": true,
@ -839,11 +844,6 @@
"type": "integer",
"minimum": 0
},
"rust-analyzer.findAllRefs.excludeImports": {
"markdownDescription": "Exclude imports from find-all-references.",
"default": false,
"type": "boolean"
},
"rust-analyzer.inlayHints.closureReturnTypeHints.enable": {
"markdownDescription": "Whether to show inlay type hints for return types of closures.",
"default": "never",