mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-07 05:50:04 -04:00
feat: add @comment.documentation where applicable
This commit is contained in:
parent
3a82b58745
commit
5a87bc98da
32 changed files with 256 additions and 58 deletions
|
|
@ -248,7 +248,36 @@
|
|||
|
||||
; -- Comments
|
||||
|
||||
(comment) @comment
|
||||
(comment) @comment @spell
|
||||
|
||||
((comment) @comment.documentation
|
||||
(#lua-match? @comment.documentation "^///[^/]"))
|
||||
((comment) @comment.documentation
|
||||
(#lua-match? @comment.documentation "^///$"))
|
||||
|
||||
((comment) @comment.documentation
|
||||
. [(unit) (declProc)])
|
||||
|
||||
(declTypes
|
||||
(comment) @comment.documentation
|
||||
. (declType))
|
||||
|
||||
(declSection
|
||||
(comment) @comment.documentation
|
||||
. [(declField) (declProc)])
|
||||
|
||||
(declEnum
|
||||
(comment) @comment.documentation
|
||||
. (declEnumValue))
|
||||
|
||||
(declConsts
|
||||
(comment) @comment.documentation
|
||||
. (declConst))
|
||||
|
||||
(declVars
|
||||
(comment) @comment.documentation
|
||||
. (declVar))
|
||||
|
||||
(pp) @preproc
|
||||
|
||||
; -- Type declaration
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue