mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-12-04 00:54:52 +00:00
Make term search fuel configurable
This commit is contained in:
parent
9e1adc76e5
commit
ab18604309
16 changed files with 56 additions and 9 deletions
|
|
@ -534,6 +534,12 @@
|
|||
"Fill missing expressions with reasonable defaults, `new` or `default` constructors."
|
||||
]
|
||||
},
|
||||
"rust-analyzer.assist.termSearch.fuel": {
|
||||
"markdownDescription": "Term search fuel in \"units of work\" for assists (Defaults to 400).",
|
||||
"default": 400,
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
},
|
||||
"rust-analyzer.cachePriming.enable": {
|
||||
"markdownDescription": "Warm up caches on project load.",
|
||||
"default": true,
|
||||
|
|
@ -930,6 +936,12 @@
|
|||
"default": false,
|
||||
"type": "boolean"
|
||||
},
|
||||
"rust-analyzer.completion.termSearch.fuel": {
|
||||
"markdownDescription": "Term search fuel in \"units of work\" for autocompletion (Defaults to 200).",
|
||||
"default": 200,
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
},
|
||||
"rust-analyzer.diagnostics.disabled": {
|
||||
"markdownDescription": "List of rust-analyzer diagnostics to disable.",
|
||||
"default": [],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue