I want the idea to insert an empty string after closing the curly brace when formatting the code.
So this,
if(condition1)
{
someMethod();
}
else
{
anotherMethod();
}
statement1;
statement2;
will end like this
if(condition1)
{
someMethod();
}
else
{
anotherMethod();
}
statement1;
statement2;
I looked at the Code Style dialog box, but could not find the corresponding option.
source
share