Hi,
I prefer line comments to start at column 0 instead of current block indentation, if they are used to comment out some unused code.
This is the main use case for me to use the Toggle Comment feature.
(I do indent informational comments, but hardly ever need the Toggle Comment feature there.)
So for example
function foo() {
var a = 1,
// b = 2,
c = 3;
// alert("Called foo");
...]
}
function bar() {
// I do indent informational comments though
}
Currently I get this instead:
function foo() {
var a = 1,
// b = 2,
c = 3;
// alert("Called foo");
...]
}
Is this configurable?
Martin