@@ -341,8 +341,8 @@ config_data! {
341
341
assist_emitMustUse: bool = false ,
342
342
/// Placeholder expression to use for missing expressions in assists.
343
343
assist_expressionFillDefault: ExprFillDefaultDef = ExprFillDefaultDef :: Todo ,
344
- /// Term search fuel in "units of work" for assists (Defaults to 400 ).
345
- assist_termSearch_fuel: usize = 400 ,
344
+ /// Term search fuel in "units of work" for assists (Defaults to 1800 ).
345
+ assist_termSearch_fuel: usize = 1800 ,
346
346
347
347
/// Whether to enforce the import granularity setting for all files. If set to false rust-analyzer will try to keep import styles consistent per file.
348
348
imports_granularity_enforce: bool = false ,
@@ -426,8 +426,8 @@ config_data! {
426
426
}"# ) . unwrap( ) ,
427
427
/// Whether to enable term search based snippets like `Some(foo.bar().baz())`.
428
428
completion_termSearch_enable: bool = false ,
429
- /// Term search fuel in "units of work" for autocompletion (Defaults to 200 ).
430
- completion_termSearch_fuel: usize = 200 ,
429
+ /// Term search fuel in "units of work" for autocompletion (Defaults to 1000 ).
430
+ completion_termSearch_fuel: usize = 1000 ,
431
431
432
432
/// Controls file watching implementation.
433
433
files_watcher: FilesWatcherDef = FilesWatcherDef :: Client ,
0 commit comments