Customize auto brace placement
Answered
No combination of indentation or brace settings I've tried seem to do it. Is this natively supported, and if not, what are my options?
I want this:
if(expression) {
for(int i: array) {
doStuff(); }}
Not this:
if(expression) {
for(int i: array) {
doStuff();
}
}
Please sign in to leave a comment.
Feature request is welcome at https://youtrack.jetbrains.com/newIssue?project=IDEA . Please describe why this style would be useful and which projects use it.