mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
fix incorrect predicate in comment highlights (#7732)
This commit is contained in:
parent
a188282b37
commit
75239a938f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user