On a somewhat similar note, let's say I have code like this:
if (something)
statement;
If I highlight the line
statement;
Then press "{" to wrap the block of code, it puts buth the opening and closing { }'s on the same line as statement, so I end up with:
if (something)
{ statement;}
Though I'd expect something like this, which it does if you highlight multiple lines.
if (something)
{
statement;
}
Thanks again for a brilliant tool.