mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-13 17:00:09 -04:00
fix(comment): remove duplicate 'FIXME'
This commit is contained in:
parent
8a9bef9327
commit
3d08cdd741
2 changed files with 6 additions and 6 deletions
|
|
@ -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 ; line and block comments
|
||||||
@comment.documentation ; comments documenting code
|
@comment.documentation ; comments documenting code
|
||||||
|
|
||||||
@comment.error ; error-type comments (e.g. `ERROR`, `FIXME`, `DEPRECATED:`)
|
@comment.error ; error-type comments (e.g. `ERROR`, `FIXME`, `DEPRECATED`)
|
||||||
@comment.warning ; warning-type comments (e.g. `WARNING:`, `FIX:`, `HACK:`)
|
@comment.warning ; warning-type comments (e.g. `WARNING`, `FIX`, `HACK`)
|
||||||
@comment.todo ; todo-type comments (e.g. `TODO:`, `WIP:`, `FIXME:`)
|
@comment.todo ; todo-type comments (e.g. `TODO`, `WIP`)
|
||||||
@comment.note ; note-type comments (e.g. `NOTE:`, `INFO:`, `XXX`)
|
@comment.note ; note-type comments (e.g. `NOTE`, `INFO`, `XXX`)
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Markup
|
#### Markup
|
||||||
|
|
|
||||||
|
|
@ -4,10 +4,10 @@
|
||||||
(user) @constant
|
(user) @constant
|
||||||
")" @punctuation.bracket)?
|
")" @punctuation.bracket)?
|
||||||
":" @punctuation.delimiter)
|
":" @punctuation.delimiter)
|
||||||
(#any-of? @comment.todo "TODO" "WIP" "FIXME"))
|
(#any-of? @comment.todo "TODO" "WIP"))
|
||||||
|
|
||||||
("text" @comment.todo @nospell
|
("text" @comment.todo @nospell
|
||||||
(#any-of? @comment.todo "TODO" "WIP" "FIXME"))
|
(#any-of? @comment.todo "TODO" "WIP"))
|
||||||
|
|
||||||
((tag
|
((tag
|
||||||
(name) @comment.note @nospell
|
(name) @comment.note @nospell
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue