language-pug icon indicating copy to clipboard operation
language-pug copied to clipboard

Toggling comments with ctrl-/ broken

Open rgherk opened this issue 9 years ago • 1 comments

v0.0.19 Toggling comments with default ctrl-/ results in '/.../' style comments, instead of '//- '. This only occurs when toggling a line with no whitespace at the beginning. e.g.

p
  a Test

==> ctrl-/ ==>

/*p*/
  a Test

instead of

//- p
  a Test

rgherk avatar Oct 10 '16 02:10 rgherk

Also, when several lines selected

/*p
    a Test*/

instead of

//- p
//-     a Test

Disorrder avatar Feb 21 '17 10:02 Disorrder