fix incorrect predicate in comment highlights (#7732)
This commit is contained in:
parent
a188282b37
commit
75239a938f
1 changed files with 2 additions and 2 deletions
|
@ -28,10 +28,10 @@
|
||||||
|
|
||||||
; Error level tags
|
; Error level tags
|
||||||
((tag (name) @error)
|
((tag (name) @error)
|
||||||
(match? @error "^(BUG|FIXME|ISSUE|XXX)$"))
|
(#match? @error "^(BUG|FIXME|ISSUE|XXX)$"))
|
||||||
|
|
||||||
("text" @error
|
("text" @error
|
||||||
(match? @error "^(BUG|FIXME|ISSUE|XXX)$"))
|
(#match? @error "^(BUG|FIXME|ISSUE|XXX)$"))
|
||||||
|
|
||||||
(tag
|
(tag
|
||||||
(name) @ui.text
|
(name) @ui.text
|
||||||
|
|
Loading…
Add table
Reference in a new issue