aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/queries')
-rw-r--r--runtime/queries/tsq/highlights.scm9
-rw-r--r--runtime/queries/tsq/injections.scm6
2 files changed, 12 insertions, 3 deletions
diff --git a/runtime/queries/tsq/highlights.scm b/runtime/queries/tsq/highlights.scm
index fd5917fb..c655b994 100644
--- a/runtime/queries/tsq/highlights.scm
+++ b/runtime/queries/tsq/highlights.scm
@@ -6,7 +6,7 @@
; highlight inheritance comments
((query . (comment) @keyword.directive)
- (#match? @keyword.directive "^;\ +inherits *:"))
+ (#match? @keyword.directive "^; +inherits *:"))
[
"("
@@ -40,8 +40,11 @@
(capture) @label
-(predicate_name) @function
+((predicate_name) @function
+ (#match? @function "^#(eq\\?|match\\?|is\\?|is-not\\?|not-same-line\\?|not-kind-eq\\?|set!|select-adjacent!|strip!)$"))
+(predicate_name) @error
(escape_sequence) @constant.character.escape
-(node_name) @variable
+(node_name) @tag
+(variable) @variable
diff --git a/runtime/queries/tsq/injections.scm b/runtime/queries/tsq/injections.scm
index 321c90ad..64404557 100644
--- a/runtime/queries/tsq/injections.scm
+++ b/runtime/queries/tsq/injections.scm
@@ -1,2 +1,8 @@
((comment) @injection.content
(#set! injection.language "comment"))
+
+((predicate
+ (predicate_name) @_predicate
+ (string) @injection.content)
+ (#eq? @_predicate "#match?")
+ (#set! injection.language "regex"))