fix(comment): remove duplicate 'FIXME'

This commit is contained in:
Christian Clason 2024-03-03 15:50:48 +01:00
parent 8a9bef9327
commit 3d08cdd741
2 changed files with 6 additions and 6 deletions

View file

@ -197,10 +197,10 @@ As languages differ quite a lot, here is a set of captures available to you when
@comment ; line and block comments
@comment.documentation ; comments documenting code
@comment.error ; error-type comments (e.g. `ERROR`, `FIXME`, `DEPRECATED:`)
@comment.warning ; warning-type comments (e.g. `WARNING:`, `FIX:`, `HACK:`)
@comment.todo ; todo-type comments (e.g. `TODO:`, `WIP:`, `FIXME:`)
@comment.note ; note-type comments (e.g. `NOTE:`, `INFO:`, `XXX`)
@comment.error ; error-type comments (e.g. `ERROR`, `FIXME`, `DEPRECATED`)
@comment.warning ; warning-type comments (e.g. `WARNING`, `FIX`, `HACK`)
@comment.todo ; todo-type comments (e.g. `TODO`, `WIP`)
@comment.note ; note-type comments (e.g. `NOTE`, `INFO`, `XXX`)
```
#### Markup

View file

@ -4,10 +4,10 @@
(user) @constant
")" @punctuation.bracket)?
":" @punctuation.delimiter)
(#any-of? @comment.todo "TODO" "WIP" "FIXME"))
(#any-of? @comment.todo "TODO" "WIP"))
("text" @comment.todo @nospell
(#any-of? @comment.todo "TODO" "WIP" "FIXME"))
(#any-of? @comment.todo "TODO" "WIP"))
((tag
(name) @comment.note @nospell