fix(comments)!: consolidate note captures

Distinguishing `hint` and `info` is too confusing; it's enough to have
`error`, `warning`, `todo`, and `note`.
This commit is contained in:
Christian Clason 2024-01-20 17:41:40 +01:00
parent 64b3d5e569
commit 5cc5627487
4 changed files with 9 additions and 10 deletions

View file

@ -193,11 +193,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., `DEPRECATED:`)
@comment.warning ; warning-type comments (e.g., `WARNING:`, `FIX:`)
@comment.hint ; note-type comments (e.g., `NOTE:`)
@comment.info ; info-type comments
@comment.todo ; todo-type comments (e.g-, `TODO:`, `WIP:`)
@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`)
```
#### Markup