How to set the line for a single statement after an if or for if without braces in the configuration file for the uncrustify utility?

 if(b) i++; => if(b)\n i++; for (i=0;i<5;i++) foo(i); => for (i=0;i<5;i++)\n foo(i); 

I found the setting for the opposite action:

 # Change simple unbraced if statements into a one-liner # 'if(b)\n i++;' => 'if(b) i++;' nl_create_if_one_liner = false # false/true 

    1 answer 1

    I found the answer:

     # Whether to put a newline after a virtual brace open with a non-empty body. # These occur in un-braced if/while/do/for statement bodies. nl_after_vbrace_open = true # false/true