SFTtech / openage

Free (as in freedom) open source clone of the Age of Empires II engine 🚀
http://openage.dev
Other
12.68k stars 1.12k forks source link

Use block indent for aligning after open brackets #1602

Closed heinezen closed 10 months ago

heinezen commented 10 months ago

Finnaly let's us auto-format the enclosing bracket on a new line.

Before:

this->display_shader->new_mom(
    "mass",
    1337,
    "hide",
    false);

After:

this->display_shader->new_mom(
    "mass",
    1337,
    "hide",
    false
);