This commit is contained in:
Hackerpilot 2020-06-09 17:09:29 -07:00
parent f80bffcf84
commit 69bd684b44
5 changed files with 22 additions and 4 deletions

View File

@ -9,8 +9,9 @@ module dfmt.formatter;
import dparse.lexer;
import dparse.parser;
import dparse.rollback_allocator;
import dfmt.config;
import dfmt.ast_info;
import dfmt.config;
import dfmt.editorconfig : OptionalBoolean;
import dfmt.indentation;
import dfmt.tokens;
import dfmt.wrapping;
@ -477,6 +478,7 @@ private:
immutable j = justAddedExtraNewline;
if (currIsSlashSlash)
{
if (config.dfmt_keep_line_breaks != OptionalBoolean.t)
newline();
justAddedExtraNewline = j;
}
@ -584,8 +586,6 @@ private:
}
do
{
import dfmt.editorconfig : OptionalBoolean;
immutable p = current.type;
regenLineBreakHintsIfNecessary(index);
writeToken();

View File

@ -0,0 +1,6 @@
void foo()
{
afdsafds
.asdf // blah
.flub;
}

1
tests/issue0490.args Normal file
View File

@ -0,0 +1 @@
--keep_line_breaks=true

6
tests/issue0490.d Normal file
View File

@ -0,0 +1,6 @@
void foo()
{
afdsafds
.asdf // blah
.flub;
}

View File

@ -0,0 +1,5 @@
void foo() {
afdsafds
.asdf // blah
.flub;
}