Skip to content

Commit

Permalink
fix incorrect predicate in comment highlights (helix-editor#7732)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucario387 authored and Schuyler Mortimer committed Jul 10, 2024
1 parent 9a51e32 commit 7aa2d36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/queries/comment/highlights.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7aa2d36

Please sign in to comment.