mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-14 00:47:18 +00:00
fix. round 4
This commit is contained in:
parent
ab0b64b26c
commit
773f9b38e3
2 changed files with 7 additions and 7 deletions
|
@ -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`)::
|
||||
+
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue