language-pug
language-pug copied to clipboard
Toggling comments with ctrl-/ broken
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
Also, when several lines selected
/*p
a Test*/
instead of
//- p
//- a Test