Fix #35
This commit is contained in:
parent
bcc4adb7cc
commit
700aaff7da
|
@ -599,7 +599,7 @@ private:
|
||||||
|
|
||||||
void formatSwitch()
|
void formatSwitch()
|
||||||
{
|
{
|
||||||
if (indents.topIs(tok!"with"))
|
while (indents.topIs(tok!"with"))
|
||||||
indents.pop();
|
indents.pop();
|
||||||
indents.push(tok!"switch");
|
indents.push(tok!"switch");
|
||||||
writeToken(); // switch
|
writeToken(); // switch
|
||||||
|
@ -847,7 +847,26 @@ private:
|
||||||
case tok!"..":
|
case tok!"..":
|
||||||
case tok!"%":
|
case tok!"%":
|
||||||
binary:
|
binary:
|
||||||
if (linebreakHints.canFind(index) || peekIs(tok!"comment", false))
|
immutable bool isWrapToken = linebreakHints.canFind(index) || peekIs(tok!"comment", false);
|
||||||
|
if (config.dfmt_split_operator_at_line_end)
|
||||||
|
{
|
||||||
|
if (isWrapToken)
|
||||||
|
{
|
||||||
|
pushWrapIndent();
|
||||||
|
write(" ");
|
||||||
|
writeToken();
|
||||||
|
newline();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
write(" ");
|
||||||
|
writeToken();
|
||||||
|
write(" ");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (isWrapToken)
|
||||||
{
|
{
|
||||||
pushWrapIndent();
|
pushWrapIndent();
|
||||||
newline();
|
newline();
|
||||||
|
@ -856,6 +875,7 @@ private:
|
||||||
write(" ");
|
write(" ");
|
||||||
writeToken();
|
writeToken();
|
||||||
write(" ");
|
write(" ");
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
writeToken();
|
writeToken();
|
||||||
|
|
|
@ -16,7 +16,7 @@ else
|
||||||
import dfmt.formatter : format;
|
import dfmt.formatter : format;
|
||||||
import std.path : buildPath, expandTilde;
|
import std.path : buildPath, expandTilde;
|
||||||
import dfmt.editorconfig : getConfigFor;
|
import dfmt.editorconfig : getConfigFor;
|
||||||
import std.getopt : getopt;
|
import std.getopt : getopt, GetOptException;
|
||||||
|
|
||||||
int main(string[] args)
|
int main(string[] args)
|
||||||
{
|
{
|
||||||
|
@ -28,10 +28,13 @@ else
|
||||||
void handleBooleans(string option, string value)
|
void handleBooleans(string option, string value)
|
||||||
{
|
{
|
||||||
import dfmt.editorconfig : OptionalBoolean;
|
import dfmt.editorconfig : OptionalBoolean;
|
||||||
import std.exception : enforce;
|
import std.exception : enforceEx;
|
||||||
enforce(value == "true" || value == "false", "Invalid argument");
|
enforceEx!GetOptException(value == "true" || value == "false", "Invalid argument");
|
||||||
switch (option)
|
switch (option)
|
||||||
{
|
{
|
||||||
|
case "align_switch_statements":
|
||||||
|
optConfig.dfmt_align_switch_statements = value == "true" ? OptionalBoolean.t : OptionalBoolean.f;
|
||||||
|
break;
|
||||||
case "outdent_attributes":
|
case "outdent_attributes":
|
||||||
optConfig.dfmt_outdent_attributes = value == "true" ? OptionalBoolean.t : OptionalBoolean.f;
|
optConfig.dfmt_outdent_attributes = value == "true" ? OptionalBoolean.t : OptionalBoolean.f;
|
||||||
break;
|
break;
|
||||||
|
@ -48,8 +51,10 @@ else
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
getopt(args,
|
getopt(args,
|
||||||
"align_switch_statements", &optConfig.dfmt_align_switch_statements,
|
"align_switch_statements", &handleBooleans,
|
||||||
"brace_style", &optConfig.dfmt_brace_style,
|
"brace_style", &optConfig.dfmt_brace_style,
|
||||||
"end_of_line", &optConfig.end_of_line,
|
"end_of_line", &optConfig.end_of_line,
|
||||||
"help|h", &showHelp,
|
"help|h", &showHelp,
|
||||||
|
@ -63,6 +68,12 @@ else
|
||||||
"space_after_cast", &handleBooleans,
|
"space_after_cast", &handleBooleans,
|
||||||
"split_operator_at_line_end", &handleBooleans,
|
"split_operator_at_line_end", &handleBooleans,
|
||||||
"tab_width", &optConfig.tab_width);
|
"tab_width", &optConfig.tab_width);
|
||||||
|
}
|
||||||
|
catch (GetOptException e)
|
||||||
|
{
|
||||||
|
stderr.writeln(e.msg);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (showHelp)
|
if (showHelp)
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
if (some_very_long_expression && some_very_long_expression &&
|
||||||
|
some_very_long_expression && some_very_long_expression && some_very_long_expression)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
--split_operator_at_line_end=true
|
|
@ -0,0 +1,8 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
if (some_very_long_expression && some_very_long_expression
|
||||||
|
&& some_very_long_expression && some_very_long_expression
|
||||||
|
&& some_very_long_expression)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
unittest {
|
||||||
|
if (some_very_long_expression && some_very_long_expression &&
|
||||||
|
some_very_long_expression && some_very_long_expression && some_very_long_expression) {
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue