diff options
author | Pham Huy Hoang | 2023-07-25 21:56:02 +0000 |
---|---|---|
committer | GitHub | 2023-07-25 21:56:02 +0000 |
commit | 75239a938f654d681ddb679ad68ae6469c026d5b (patch) | |
tree | ce038ca8d29c4f3c62c4d13f4218fb1f3e7ae49e /runtime/queries | |
parent | a188282b37cd89e5d892493fa142497a2b723a58 (diff) |
fix incorrect predicate in comment highlights (#7732)
Diffstat (limited to 'runtime/queries')
-rw-r--r-- | runtime/queries/comment/highlights.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/queries/comment/highlights.scm b/runtime/queries/comment/highlights.scm index 3b25531a..6255d285 100644 --- a/runtime/queries/comment/highlights.scm +++ b/runtime/queries/comment/highlights.scm @@ -28,10 +28,10 @@ ; Error level tags ((tag (name) @error) - (match? @error "^(BUG|FIXME|ISSUE|XXX)$")) + (#match? @error "^(BUG|FIXME|ISSUE|XXX)$")) ("text" @error - (match? @error "^(BUG|FIXME|ISSUE|XXX)$")) + (#match? @error "^(BUG|FIXME|ISSUE|XXX)$")) (tag (name) @ui.text |