In VS Code, I have Emmet automatically add comments.
"emmet.syntaxProfiles": {
"html": {
"filters": "html, c"
}
}
That's great for HTML comments. But, what if you're using Blade or Nunjucks? You still want to use Emmet's automated comments with these languages, but the comments are different.
Blade: {{-- --}}
Nunjucks: {# #}
How do you make Emmet smart enough to realize context?