Is there a way to introduce a new line after if-else block? Current code looks like this:
if (condition) {
}
else {
}
if (condition) {
}
statement;
I want to make it look like this:
if (condition) {
}
else {
}
if (condition) {
}
statement;
I have setup
nl_after_if=force
but it doesn't seem to help.
EDIT: nl_after_if=force doesn't introduce a new line between to if blocks. The output is this:
if (condition) {
}
else {
}
if (condition) {
}
statement;
Which is potentially more confusing. Is there a way to solve this? I want a new line between multiple ifs.