Joakim Kemeny
-
2003-05-05
- labels: --> Core
It would be a nice feature if the setting "Blank lines
before right curly brace" could be split into two settings.
One that apply when the curly brace is alone on the line
and one that apply when it's not.
This way you could format the following code correctly:
if (a > 0) {
d = c;
b = a;
if (d == 0) {
a = b;
c = d;
} else {
a = 0;
b = 0;
c = 0;
d = 0;
}
}