dfmt
dfmt copied to clipboard
empty blocks on same line
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
}