Skip to content

Commit 93345f5

Browse files
authored
Rename fn_args_layout config option to fn_params_layout (#4163)
1 parent c83e729 commit 93345f5

16 files changed

+25
-25
lines changed

Configurations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -637,9 +637,9 @@ trailing whitespaces.
637637
- **Possible values**: `true`, `false`
638638
- **Stable**: No (tracking issue: [#3392](https://github.com/rust-lang/rustfmt/issues/3392))
639639

640-
## `fn_args_layout`
640+
## `fn_params_layout`
641641

642-
Control the layout of arguments in a function
642+
Control the layout of parameters in a function signature
643643

644644
- **Default value**: `"Tall"`
645645
- **Possible values**: `"Compressed"`, `"Tall"`, `"Vertical"`

rustfmt-core/rustfmt-lib/src/config.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ create_config! {
108108
the same line with the pattern of arms";
109109
force_multiline_blocks: bool, false, false,
110110
"Force multiline closure bodies and match arms to be wrapped in a block";
111-
fn_args_layout: Density, Density::Tall, true,
112-
"Control the layout of arguments in a function";
111+
fn_params_layout: Density, Density::Tall, true,
112+
"Control the layout of parameters in a function signature";
113113
brace_style: BraceStyle, BraceStyle::SameLineWhere, false, "Brace style for items";
114114
control_brace_style: ControlBraceStyle, ControlBraceStyle::AlwaysSameLine, false,
115115
"Brace style for control flow constructs";
@@ -552,7 +552,7 @@ struct_field_align_threshold = 0
552552
enum_discrim_align_threshold = 0
553553
match_arm_blocks = true
554554
force_multiline_blocks = false
555-
fn_args_layout = "Tall"
555+
fn_params_layout = "Tall"
556556
brace_style = "SameLineWhere"
557557
control_brace_style = "AlwaysSameLine"
558558
trailing_semicolon = true

rustfmt-core/rustfmt-lib/src/items.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2613,7 +2613,7 @@ fn rewrite_params(
26132613
&param_items,
26142614
context
26152615
.config
2616-
.fn_args_layout()
2616+
.fn_params_layout()
26172617
.to_list_tactic(param_items.len()),
26182618
Separator::Comma,
26192619
one_line_budget,

rustfmt-core/rustfmt-lib/tests/config/small_tabs.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ comment_width = 80
33
tab_spaces = 2
44
newline_style = "Unix"
55
brace_style = "SameLineWhere"
6-
fn_args_layout = "Tall"
6+
fn_params_layout = "Tall"
77
trailing_comma = "Vertical"
88
indent_style = "Block"
99
reorder_imports = false

rustfmt-core/rustfmt-lib/tests/source/configs/fn_args_layout/compressed.rs rustfmt-core/rustfmt-lib/tests/source/configs/fn_params_layout/compressed.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// rustfmt-fn_args_layout: Compressed
2-
// Function arguments density
1+
// rustfmt-fn_params_layout: Compressed
2+
// Function parameter density
33

44
trait Lorem {
55
fn lorem(ipsum: Ipsum, dolor: Dolor, sit: Sit, amet: Amet);

rustfmt-core/rustfmt-lib/tests/source/configs/fn_args_layout/tall.rs rustfmt-core/rustfmt-lib/tests/source/configs/fn_params_layout/tall.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// rustfmt-fn_args_layout: Tall
2-
// Function arguments density
1+
// rustfmt-fn_params_layout: Tall
2+
// Function parameter density
33

44
trait Lorem {
55
fn lorem(ipsum: Ipsum, dolor: Dolor, sit: Sit, amet: Amet);

rustfmt-core/rustfmt-lib/tests/source/configs/fn_args_layout/vertical.rs rustfmt-core/rustfmt-lib/tests/source/configs/fn_params_layout/vertical.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// rustfmt-fn_args_layout: Vertical
2-
// Function arguments density
1+
// rustfmt-fn_params_layout: Vertical
2+
// Function parameter density
33

44
trait Lorem {
55
fn lorem(ipsum: Ipsum, dolor: Dolor, sit: Sit, amet: Amet);

rustfmt-core/rustfmt-lib/tests/source/fn-custom-7.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// rustfmt-normalize_comments: true
2-
// rustfmt-fn_args_layout: Vertical
2+
// rustfmt-fn_params_layout: Vertical
33
// rustfmt-brace_style: AlwaysNextLine
44

55
// Case with only one variable.

rustfmt-core/rustfmt-lib/tests/source/fn-custom.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// rustfmt-fn_args_layout: Compressed
1+
// rustfmt-fn_params_layout: Compressed
22
// Test some of the ways function signatures can be customised.
33

44
// Test compressed layout of args.

rustfmt-core/rustfmt-lib/tests/source/fn_args_layout-vertical.rs rustfmt-core/rustfmt-lib/tests/source/fn_params_layout-vertical.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// rustfmt-fn_args_layout: Vertical
1+
// rustfmt-fn_params_layout: Vertical
22

33
// Empty list should stay on one line.
44
fn do_bar(

rustfmt-core/rustfmt-lib/tests/target/configs/fn_args_layout/compressed.rs rustfmt-core/rustfmt-lib/tests/target/configs/fn_params_layout/compressed.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// rustfmt-fn_args_layout: Compressed
2-
// Function arguments density
1+
// rustfmt-fn_params_layout: Compressed
2+
// Function parameter density
33

44
trait Lorem {
55
fn lorem(ipsum: Ipsum, dolor: Dolor, sit: Sit, amet: Amet);

rustfmt-core/rustfmt-lib/tests/target/configs/fn_args_layout/tall.rs rustfmt-core/rustfmt-lib/tests/target/configs/fn_params_layout/tall.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// rustfmt-fn_args_layout: Tall
2-
// Function arguments density
1+
// rustfmt-fn_params_layout: Tall
2+
// Function parameter density
33

44
trait Lorem {
55
fn lorem(ipsum: Ipsum, dolor: Dolor, sit: Sit, amet: Amet);

rustfmt-core/rustfmt-lib/tests/target/configs/fn_args_layout/vertical.rs rustfmt-core/rustfmt-lib/tests/target/configs/fn_params_layout/vertical.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// rustfmt-fn_args_layout: Vertical
2-
// Function arguments density
1+
// rustfmt-fn_params_layout: Vertical
2+
// Function parameter density
33

44
trait Lorem {
55
fn lorem(

rustfmt-core/rustfmt-lib/tests/target/fn-custom-7.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// rustfmt-normalize_comments: true
2-
// rustfmt-fn_args_layout: Vertical
2+
// rustfmt-fn_params_layout: Vertical
33
// rustfmt-brace_style: AlwaysNextLine
44

55
// Case with only one variable.

rustfmt-core/rustfmt-lib/tests/target/fn-custom.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// rustfmt-fn_args_layout: Compressed
1+
// rustfmt-fn_params_layout: Compressed
22
// Test some of the ways function signatures can be customised.
33

44
// Test compressed layout of args.

rustfmt-core/rustfmt-lib/tests/target/fn_args_layout-vertical.rs rustfmt-core/rustfmt-lib/tests/target/fn_params_layout-vertical.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// rustfmt-fn_args_layout: Vertical
1+
// rustfmt-fn_params_layout: Vertical
22

33
// Empty list should stay on one line.
44
fn do_bar() -> u8 {

0 commit comments

Comments
 (0)