First thank you for a great product!
I have noticed a bug in version 4.0 free.
When you have a block of SQL code you wish to comment out, maybe bcs you don't use it at the moment,
I would do like this in earlier versions:
* mark the block
* press Ctrl-shift-C
This would normally result in the following
Code:
— SELECT * from table
— WHERE 1=2
— AND a = b
— ORDER BY nothing
But with version 4.0 I get instead .. which does not work
Code:
— SELECT * from table
—
WHERE 1=2
—
AND a = b
—
ORDER BY nothing
—
Likewise, if I use Ctrl-Shift-C on one line, I get the comment, but the cursor stays on the same line.
With the reverse function, Ctrl-Shift-R, the cursor moves to the next line.
This is of course the best, since I can quickly move down over a bunch of code and comment out.
Can anyone confirm if this is in the pro version ? And if the bug is real, and will be removed ?