Steps:
- Create a template,
template.hbs
- Open it in Sublime
- Add a comment with HTML in it:
<!-- <a href="http://moo.cow.com/">Link</a> -->
- Select the comment (from < to >) and press command + /
Result:
Selection is wrapped in Handlebars comment:
{{! <!-- <a href="http://moo.cow.com/">Link</a> --> }}
Expected:
Selection is uncommented:
<a href="http://moo.cow.com/">Link</a>
Steps:
template.hbsResult:
Selection is wrapped in Handlebars comment:
Expected:
Selection is uncommented: