davidrios / pug-tmbundle

A comprehensive textmate / sublime text bundle for the Pug (formerly Jade) template language.
https://github.com/davidrios/pug-tmbundle
MIT License
48 stars 20 forks source link

Sublime Text 3 Default "Comment" Key Binding Defaults to Unbuffered Type of Comment #20

Closed ToniWonKanobi closed 1 year ago

ToniWonKanobi commented 6 years ago

I'm using the Pug plugin with Sublime Text 3, and I've noticed that the default "comment" key binding leads to the insertion of an unbuffered comment //- (that is, one that does not show up in the output).

How can I make it so that for the default "comment" key binding, the buffered type of comment // is inserted instead?

I want the default "comment" key binding to lead to this type of comment insertion.

So,

// I am a comment that will be parsed to output
body
  h1 This is a title
  p This is a paragraph

... instead of this type of comment insertion

//- I am a comment that will *not* be parsed to output
body
  h1 This is a title
  p This is a paragraph
ToniWonKanobi commented 1 year ago

lol dang. Four years later!