Add reflow_property_chains option
Recalculate the splitting of property chains into multiple lines.
This commit is contained in:
parent
840aeee45e
commit
fec7394175
|
@ -56,6 +56,8 @@ found there.
|
||||||
* `--tab_width`: *see tab_width [below](#standard-editorconfig-properties)*
|
* `--tab_width`: *see tab_width [below](#standard-editorconfig-properties)*
|
||||||
* `--template_constraint_style`: *see dfmt_template_constraint_style [below](#dfmt-specific-properties)*
|
* `--template_constraint_style`: *see dfmt_template_constraint_style [below](#dfmt-specific-properties)*
|
||||||
* `--keep_line_breaks`: *see dfmt_keep_line_breaks [below](#dfmt-specific-properties)*
|
* `--keep_line_breaks`: *see dfmt_keep_line_breaks [below](#dfmt-specific-properties)*
|
||||||
|
* `--single_indent`: *see dfmt_single_indent [below](#dfmt-specific-properties)*
|
||||||
|
* `--reflow_property_chains`: *see dfmt_property_chains [below](#dfmt-specific-properties)*
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
```
|
```
|
||||||
|
@ -117,6 +119,7 @@ dfmt_single_template_constraint_indent | `true`, **`false`** | Set if the constr
|
||||||
dfmt_space_before_aa_colon | `true`, **`false`** | Adds a space after an associative array key before the `:` like in older dfmt versions.
|
dfmt_space_before_aa_colon | `true`, **`false`** | Adds a space after an associative array key before the `:` like in older dfmt versions.
|
||||||
dfmt_keep_line_breaks | `true`, **`false`** | Keep existing line breaks if these don't violate other formatting rules.
|
dfmt_keep_line_breaks | `true`, **`false`** | Keep existing line breaks if these don't violate other formatting rules.
|
||||||
dfmt_single_indent | `true`, **`false`** | Set if the code in parens is indented by a single tab instead of two.
|
dfmt_single_indent | `true`, **`false`** | Set if the code in parens is indented by a single tab instead of two.
|
||||||
|
dfmt_reflow_property_chains | **`true`**, `false` | Recalculate the splitting of property chains into multiple lines.
|
||||||
|
|
||||||
## Terminology
|
## Terminology
|
||||||
* Braces - `{` and `}`
|
* Braces - `{` and `}`
|
||||||
|
|
|
@ -63,6 +63,8 @@ struct Config
|
||||||
OptionalBoolean dfmt_keep_line_breaks;
|
OptionalBoolean dfmt_keep_line_breaks;
|
||||||
///
|
///
|
||||||
OptionalBoolean dfmt_single_indent;
|
OptionalBoolean dfmt_single_indent;
|
||||||
|
///
|
||||||
|
OptionalBoolean dfmt_reflow_property_chains;
|
||||||
|
|
||||||
mixin StandardEditorConfigFields;
|
mixin StandardEditorConfigFields;
|
||||||
|
|
||||||
|
@ -93,6 +95,7 @@ struct Config
|
||||||
dfmt_space_before_aa_colon = OptionalBoolean.f;
|
dfmt_space_before_aa_colon = OptionalBoolean.f;
|
||||||
dfmt_keep_line_breaks = OptionalBoolean.f;
|
dfmt_keep_line_breaks = OptionalBoolean.f;
|
||||||
dfmt_single_indent = OptionalBoolean.f;
|
dfmt_single_indent = OptionalBoolean.f;
|
||||||
|
dfmt_reflow_property_chains = OptionalBoolean.t;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1458,7 +1458,8 @@ private:
|
||||||
break;
|
break;
|
||||||
case tok!".":
|
case tok!".":
|
||||||
regenLineBreakHintsIfNecessary(index);
|
regenLineBreakHintsIfNecessary(index);
|
||||||
immutable bool ufcsWrap = astInformation.ufcsHintLocations.canFindIndex(current.index);
|
immutable bool ufcsWrap = config.dfmt_reflow_property_chains == OptionalBoolean.t
|
||||||
|
&& astInformation.ufcsHintLocations.canFindIndex(current.index);
|
||||||
if (ufcsWrap || linebreakHints.canFind(index) || onNextLine
|
if (ufcsWrap || linebreakHints.canFind(index) || onNextLine
|
||||||
|| (linebreakHints.length == 0 && currentLineLength + nextTokenLength() > config.max_line_length))
|
|| (linebreakHints.length == 0 && currentLineLength + nextTokenLength() > config.max_line_length))
|
||||||
{
|
{
|
||||||
|
|
|
@ -98,6 +98,9 @@ else
|
||||||
case "single_indent":
|
case "single_indent":
|
||||||
optConfig.dfmt_single_indent = optVal;
|
optConfig.dfmt_single_indent = optVal;
|
||||||
break;
|
break;
|
||||||
|
case "reflow_property_chains":
|
||||||
|
optConfig.dfmt_reflow_property_chains = optVal;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
assert(false, "Invalid command-line switch");
|
assert(false, "Invalid command-line switch");
|
||||||
}
|
}
|
||||||
|
@ -129,7 +132,8 @@ else
|
||||||
"tab_width", &optConfig.tab_width,
|
"tab_width", &optConfig.tab_width,
|
||||||
"template_constraint_style", &optConfig.dfmt_template_constraint_style,
|
"template_constraint_style", &optConfig.dfmt_template_constraint_style,
|
||||||
"keep_line_breaks", &handleBooleans,
|
"keep_line_breaks", &handleBooleans,
|
||||||
"single_indent", &handleBooleans);
|
"single_indent", &handleBooleans,
|
||||||
|
"reflow_property_chains", &handleBooleans);
|
||||||
// dfmt on
|
// dfmt on
|
||||||
}
|
}
|
||||||
catch (GetOptException e)
|
catch (GetOptException e)
|
||||||
|
@ -341,6 +345,7 @@ Formatting Options:
|
||||||
--template_constraint_style
|
--template_constraint_style
|
||||||
--space_before_aa_colon
|
--space_before_aa_colon
|
||||||
--single_indent
|
--single_indent
|
||||||
|
--reflow_property_chains
|
||||||
`,
|
`,
|
||||||
optionsToString!(typeof(Config.dfmt_template_constraint_style)));
|
optionsToString!(typeof(Config.dfmt_template_constraint_style)));
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
string f()
|
||||||
|
{
|
||||||
|
return duration.total!"seconds".to!string;
|
||||||
|
}
|
||||||
|
|
||||||
|
string g()
|
||||||
|
{
|
||||||
|
return duration.total!"seconds"().to!string;
|
||||||
|
}
|
||||||
|
|
||||||
|
string h()
|
||||||
|
{
|
||||||
|
return duration.total!"seconds"().to!string.to!string.to!string.to!string.to!string.to!string
|
||||||
|
.to!string.to!string.to!string;
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
--reflow_property_chains=false
|
|
@ -0,0 +1,14 @@
|
||||||
|
string f()
|
||||||
|
{
|
||||||
|
return duration.total!"seconds".to!string;
|
||||||
|
}
|
||||||
|
|
||||||
|
string g()
|
||||||
|
{
|
||||||
|
return duration.total!"seconds"().to!string;
|
||||||
|
}
|
||||||
|
|
||||||
|
string h()
|
||||||
|
{
|
||||||
|
return duration.total!"seconds"().to!string.to!string.to!string.to!string.to!string.to!string.to!string.to!string.to!string;
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
string f()
|
||||||
|
{
|
||||||
|
return duration.total!"seconds".to!string;
|
||||||
|
}
|
||||||
|
|
||||||
|
string g()
|
||||||
|
{
|
||||||
|
return duration.total!"seconds"().to!string;
|
||||||
|
}
|
||||||
|
|
||||||
|
string h()
|
||||||
|
{
|
||||||
|
return duration.total!"seconds"().to!string.to!string.to!string.to!string.to!string.to!string
|
||||||
|
.to!string.to!string.to!string;
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
string f() {
|
||||||
|
return duration.total!"seconds".to!string;
|
||||||
|
}
|
||||||
|
|
||||||
|
string g() {
|
||||||
|
return duration.total!"seconds"().to!string;
|
||||||
|
}
|
||||||
|
|
||||||
|
string h() {
|
||||||
|
return duration.total!"seconds"().to!string.to!string.to!string.to!string.to!string.to!string
|
||||||
|
.to!string.to!string.to!string;
|
||||||
|
}
|
Loading…
Reference in New Issue