diff options
Diffstat (limited to 'runtime/queries/pkl')
-rw-r--r-- | runtime/queries/pkl/highlights.scm | 2 | ||||
-rw-r--r-- | runtime/queries/pkl/injections.scm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/queries/pkl/highlights.scm b/runtime/queries/pkl/highlights.scm index 501c9485..1de6ba3c 100644 --- a/runtime/queries/pkl/highlights.scm +++ b/runtime/queries/pkl/highlights.scm @@ -172,7 +172,7 @@ (clazz (identifier) @type) (typeAlias (identifier) @type) ((identifier) @type - (match? @type "^[A-Z]")) + (#match? @type "^[A-Z]")) (typeArgumentList "<" @punctuation.bracket diff --git a/runtime/queries/pkl/injections.scm b/runtime/queries/pkl/injections.scm index 15867f35..c5d2d4ac 100644 --- a/runtime/queries/pkl/injections.scm +++ b/runtime/queries/pkl/injections.scm @@ -18,7 +18,7 @@ ( ((methodCallExpr (identifier) @methodName (argumentList (slStringLiteral) @injection.content)) (#set! injection.language "regex")) - (eq? @methodName "Regex")) + (#eq? @methodName "Regex")) ((lineComment) @injection.content (#set! injection.language "comment")) |