The location of braces seems to be an eternal debate among programmers. We have
// I don't like this
if(end_of_line_braces) {
do_stuff();
}
// I do like this
if(own_line_braces)
{
do_more_stuff();
}
// Weirdness work makes me use
if(indented_braces)
{
do_even_more_stuff();
}
Why not make braces configurable to the user's preference? I looked through the decompiler options and it already has quite a few settings the user can configure (indentation, comment style, etc). This is one more quality of life change I think would be nice to have.
Dear GOD, YES please!
if(end_of_line_braces) {
do_stuff();
}
Is absolutely horrible for readability. At a quick glance, it looks like there is no starting brace at all.
Has this been implemented yet?
No, it has not.
Most helpful comment
Dear GOD, YES please!
Is absolutely horrible for readability. At a quick glance, it looks like there is no starting brace at all.