Skip to content

Commit

Permalink
fix: self closing tag syntax highlight incorrect
Browse files Browse the repository at this point in the history
close #948
  • Loading branch information
johnsoncodehk committed Jul 16, 2022
1 parent 0ebf0a5 commit 74f3877
Showing 1 changed file with 7 additions and 1 deletion.
Expand Up @@ -605,7 +605,13 @@
"name": "entity.name.tag.$2.html.vue"
}
},
"end": "(?<=/>)",
"end": "(/>)",
"endCaptures": {
"1": {
"name": "punctuation.definition.tag.end.html.vue"
}
},
"name": "self-closing-tag",
"patterns": [
{
"include": "#tag-stuff"
Expand Down

0 comments on commit 74f3877

Please sign in to comment.