<div dir="ltr"><div>If I have this piece of code<br><br><span style="font-family:courier new,monospace">enum fruits {<br>    APPLE      = 1,<br>    ORANGE     = 2,<br>    STRAWBERRY = 3,<br>};</span><br><br></div>after using <span style="font-family:courier new,monospace">clang-format</span> on it I got<br>
<br><span style="font-family:courier new,monospace">enum fruits {<br>  APPLE = 1,<br>  ORANGE = 2,<br>  STRAWBERRY = 3,<br>};</span><br><br>and this happens with any block of code where a nice padding can potentially really help the situation .<br>
<br>There is a way to use <span style="font-family:courier new,monospace">clang-format</span> and generate a nice padding inside the code ?<br></div>