Skip to content

Commit

Permalink
Remove highlighting support for the 'tag' keyword.
Browse files Browse the repository at this point in the history
  • Loading branch information
InsertCreativityHere committed Jul 8, 2024
1 parent 26ea4f8 commit e4675d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions syntaxes/ice.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -1536,7 +1536,7 @@
]
},
{
"match": "(?<!\\\\)\\b(?:(local)|(const)|(idempotent)|(out)|((?:optional|tag)\\([-a-zA-Z0-9_:]*\\)))(?:\\b|(?<=\\)))",
"match": "(?<!\\\\)\\b(?:(local)|(const)|(idempotent)|(out)|(optional\\([-a-zA-Z0-9_:]*\\)))(?:\\b|(?<=\\)))",
"captures": {
"1": {"name": "storage.modifier.local.ice"},
"2": {"name": "storage.modifier.const.ice"},
Expand All @@ -1545,7 +1545,7 @@
"5": {
"patterns": [
{
"match": "((?:optional|tag))(\\()([-a-zA-Z0-9_:]*)(\\))",
"match": "(optional)(\\()([-a-zA-Z0-9_:]*)(\\))",
"captures": {
"1": {"name": "storage.modifier.optional.ice"},
"2": {"name": "punctuation.section.group.optional.begin.ice"},
Expand Down

0 comments on commit e4675d5

Please sign in to comment.