Skip to content

Commit

Permalink
fix(gml) function invokation more specific
Browse files Browse the repository at this point in the history
  • Loading branch information
thennothinghappened committed Dec 14, 2024
1 parent 31b3fc0 commit d011d6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/languages/gml.js
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,7 @@ export default function(hljs) {
/\s*\(/
],
scope: {
2: "title.function"
2: "title.function.invoke"
}
},
{
Expand All @@ -1347,7 +1347,7 @@ export default function(hljs) {
/\(/
],
scope: {
1: "title.function"
1: "title.function.invoke"
}
};

Expand Down

0 comments on commit d011d6a

Please sign in to comment.