Hi
In my code I usually split a statement over multiple lines for cleaness. But when I reindent my code with the default settings I get this:
But What I really wanted is the lines below the call also indent 1 space like:
If this possible and how to activate it?
In my code I usually split a statement over multiple lines for cleaness. But when I reindent my code with the default settings I get this:
Code: Select all
if (x==y or
(y==z and w) or
(a==c))
{
...
}
Code: Select all
if (x==y or
(y==z and w) or
(a==c))
{
...
}