dfmt icon indicating copy to clipboard operation
dfmt copied to clipboard

empty blocks on same line

Open John-Colvin opened this issue 9 years ago • 0 comments

it would be nice to have an option that used this style:

version (a) {}
else
{
     // some stuff
}

instead of the rather space-hogging style that would currently be used with allman braces:

version (a)
{
}
else
{
     // some stuff
}

John-Colvin avatar Oct 21 '16 15:10 John-Colvin