Skip to content

Commit

Permalink
fix: {{ }} colorizedBracketPairs not working
Browse files Browse the repository at this point in the history
close #1759
  • Loading branch information
johnsoncodehk committed Dec 25, 2022
1 parent b517156 commit 5d429d7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Expand Up @@ -23,7 +23,7 @@
"name": "punctuation.definition.tag.end.html.angular"
}
],
"name": "expression.embbeded.angular",
"name": "expression.embedded.angular",
"patterns": [
{
"begin": "\\G",
Expand Down
Expand Up @@ -1173,19 +1173,19 @@
"vue-interpolations": {
"patterns": [
{
"begin": "\\{\\{",
"beginCaptures": [
{
"name": "punctuation.definition.tag.begin.html.vue"
"begin": "(\\{\\{)",
"beginCaptures": {
"1": {
"name": "punctuation.definition.interpolation.begin.html.vue"
}
],
"end": "\\}\\}",
"endCaptures": [
{
"name": "punctuation.definition.tag.end.html.vue"
},
"end": "(\\}\\})",
"endCaptures": {
"1": {
"name": "punctuation.definition.interpolation.end.html.vue"
}
],
"name": "expression.embbeded.vue",
},
"name": "expression.embedded.vue",
"patterns": [
{
"begin": "\\G",
Expand Down

0 comments on commit 5d429d7

Please sign in to comment.