mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 04:17:43 +03:00
Switch Nim tree-sitter queries to alaviss/tree-sitter-nim (#9722)
This commit is contained in:
parent
1143f47954
commit
e51a1e4e2a
4 changed files with 329 additions and 286 deletions
|
@ -1,19 +1,33 @@
|
|||
(routine
|
||||
(block) @function.inside) @function.around
|
||||
(proc_declaration
|
||||
body: (_) @function.inside) @function.around
|
||||
(func_declaration
|
||||
body: (_) @function.inside) @function.around
|
||||
(iterator_declaration
|
||||
body: (_) @function.inside) @function.around
|
||||
(converter_declaration
|
||||
body: (_) @function.inside) @function.around
|
||||
(method_declaration
|
||||
body: (_) @function.inside) @function.around
|
||||
(template_declaration
|
||||
body: (_) @function.inside) @function.around
|
||||
(macro_declaration
|
||||
body: (_) @function.inside) @function.around
|
||||
|
||||
; @class.inside (types?)
|
||||
; @class.around
|
||||
(type_declaration (_) @class.inside) @class.around
|
||||
|
||||
; paramListSuffix is strange and i do not understand it
|
||||
(paramList
|
||||
(paramColonEquals) @parameter.inside) @parameter.around
|
||||
(parameter_declaration
|
||||
(symbol_declaration_list) @parameter.inside) @parameter.around
|
||||
|
||||
(comment) @comment.inside
|
||||
(multilineComment) @comment.inside
|
||||
(docComment) @comment.inside
|
||||
(multilineDocComment) @comment.inside
|
||||
[
|
||||
(comment)
|
||||
(block_comment)
|
||||
(documentation_comment)
|
||||
(block_documentation_comment)
|
||||
] @comment.inside
|
||||
|
||||
(comment)+ @comment.around
|
||||
(multilineComment) @comment.around
|
||||
(docComment)+ @comment.around
|
||||
(multilineDocComment) @comment.around
|
||||
[
|
||||
(comment)+
|
||||
(block_comment)
|
||||
(documentation_comment)+
|
||||
(block_documentation_comment)+
|
||||
] @comment.around
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue