Skip to content

Commit

Permalink
generated: Updated rust-analyzer.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 20, 2024
1 parent 2a94d1d commit fd41c5a
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion generated/rust-analyzer.nix
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,15 @@
];
};
};
"rust-analyzer.cfg.setTest" = {
description = ''
Set `cfg(test)` for local crates. Defaults to true.
'';
pluginDefault = true;
type = {
kind = "boolean";
};
};
"rust-analyzer.check.allTargets" = {
description = ''
Check all targets and tests (`--all-targets`). Defaults to
Expand Down Expand Up @@ -507,6 +516,17 @@
kind = "boolean";
};
};
"rust-analyzer.completion.addSemicolonToUnit" = {
description = ''
Whether to automatically add a semicolon when completing unit-returning functions.
In `match` arms it completes a comma instead.
'';
pluginDefault = true;
type = {
kind = "boolean";
};
};
"rust-analyzer.completion.autoimport.enable" = {
description = ''
Toggles the additional completions that automatically add imports when completed.
Expand Down Expand Up @@ -1702,7 +1722,7 @@
};
"rust-analyzer.references.excludeTests" = {
description = ''
Exclude tests from find-all-references.
Exclude tests from find-all-references and call-hierarchy.
'';
pluginDefault = false;
type = {
Expand Down

0 comments on commit fd41c5a

Please sign in to comment.