2022-09-26 10:19:02 +01:00
|
|
|
(_) @spell
|
|
|
|
|
|
2023-02-13 03:43:26 -05:00
|
|
|
((tag
|
2023-03-01 14:26:52 +01:00
|
|
|
(name) @text.todo @nospell
|
2023-02-13 03:43:26 -05:00
|
|
|
("(" @punctuation.bracket (user) @constant ")" @punctuation.bracket)?
|
|
|
|
|
":" @punctuation.delimiter)
|
|
|
|
|
(#eq? @text.todo "TODO"))
|
2022-10-17 20:09:56 +03:00
|
|
|
|
2023-03-01 14:26:52 +01:00
|
|
|
("text" @text.todo @nospell
|
2022-10-17 20:09:56 +03:00
|
|
|
(#eq? @text.todo "TODO"))
|
2021-03-12 11:21:46 -05:00
|
|
|
|
2023-02-13 03:43:26 -05:00
|
|
|
((tag
|
2023-03-01 14:26:52 +01:00
|
|
|
(name) @text.note @nospell
|
2023-02-13 03:43:26 -05:00
|
|
|
("(" @punctuation.bracket (user) @constant ")" @punctuation.bracket)?
|
|
|
|
|
":" @punctuation.delimiter)
|
|
|
|
|
(#any-of? @text.note "NOTE" "XXX"))
|
2022-09-23 19:52:00 +02:00
|
|
|
|
2023-03-01 14:26:52 +01:00
|
|
|
("text" @text.note @nospell
|
2022-10-17 20:09:56 +03:00
|
|
|
(#any-of? @text.note "NOTE" "XXX"))
|
2022-09-23 19:52:00 +02:00
|
|
|
|
2023-02-13 03:43:26 -05:00
|
|
|
((tag
|
2023-03-01 14:26:52 +01:00
|
|
|
(name) @text.warning @nospell
|
2023-02-13 03:43:26 -05:00
|
|
|
("(" @punctuation.bracket (user) @constant ")" @punctuation.bracket)?
|
|
|
|
|
":" @punctuation.delimiter)
|
|
|
|
|
(#any-of? @text.warning "HACK" "WARNING"))
|
2021-03-12 11:21:46 -05:00
|
|
|
|
2023-03-01 14:26:52 +01:00
|
|
|
("text" @text.warning @nospell
|
2022-10-17 20:09:56 +03:00
|
|
|
(#any-of? @text.warning "HACK" "WARNING"))
|
2021-04-02 11:58:45 -05:00
|
|
|
|
2023-02-13 03:43:26 -05:00
|
|
|
((tag
|
2023-03-01 14:26:52 +01:00
|
|
|
(name) @text.danger @nospell
|
2023-02-13 03:43:26 -05:00
|
|
|
("(" @punctuation.bracket (user) @constant ")" @punctuation.bracket)?
|
|
|
|
|
":" @punctuation.delimiter)
|
|
|
|
|
(#any-of? @text.danger "FIXME" "BUG"))
|
2021-03-12 11:21:46 -05:00
|
|
|
|
2023-03-01 14:26:52 +01:00
|
|
|
("text" @text.danger @nospell
|
2022-10-17 20:09:56 +03:00
|
|
|
(#any-of? @text.danger "FIXME" "BUG"))
|
2021-04-02 11:58:45 -05:00
|
|
|
|
2021-03-12 11:21:46 -05:00
|
|
|
; Issue number (#123)
|
2022-10-17 20:09:56 +03:00
|
|
|
("text" @number
|
|
|
|
|
(#lua-match? @number "^#[0-9]+$"))
|