Skip to content

Commit

Permalink
Merge of #6223
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Apr 12, 2024
2 parents 39569f0 + add4cc5 commit e064b0b
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions apps/vscode-wing/syntaxes/wing.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
{
"include": "#template-string"
},
{
"include": "#object-keys"
},
{
"include": "#members"
},
{
"include": "#keywords"
},
Expand All @@ -23,9 +29,6 @@
},
{
"include": "#identifiers"
},
{
"include": "#members"
}
],
"repository": {
Expand Down Expand Up @@ -188,6 +191,18 @@
}
}
]
},
"object-keys": {
"patterns": [
{
"match": "\\b([a-zA-Z_][a-zA-Z0-9_]*)\\s*:",
"captures": {
"1": {
"name": "variable.wing"
}
}
}
]
}
}
}

0 comments on commit e064b0b

Please sign in to comment.