Customize auto brace placement
已回答
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();
}
}
请先登录再写评论。
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.