Closed ProgerXP closed 2 years ago
Currently, the Special > Line Comment (Toggle) command does not affect already prefixed lines (unless all lines are prefixed, then it works like un-comment). Remove this check.
Special > Line Comment (Toggle)
function fn() { if (0) { // Foo. bar();
Result of Ctrl+Q on lines 2-4, before:
function fn() { //if (0) { // Foo. // bar();
Desired:
function fn() { //if (0) { // // Foo. // bar();
Fixed.
Currently, the
Special > Line Comment (Toggle)
command does not affect already prefixed lines (unless all lines are prefixed, then it works like un-comment). Remove this check.Result of Ctrl+Q on lines 2-4, before:
Desired: