Community
Participate
Working Groups
When customizing the code style, under the "line wrapping" tab, choose the "Binary expressions" element in the tree. Set "indent policy" to "wrap only when necessary" and "indent on column". This is the result: int foo() { int sum = 100 + 200 + 300 + 400 + 500 + 600 + 700 + 800; While I would expect (which is similar to what I get when choosing "default indentation"): int foo() { int sum = 100 + 200 + 300 + 400 + 500 + 600 + 700 + 800;
I just tried this, and I get the second (expected) result.
Closing per comment 1. Feel free to reopen if you're still seeing this.