Initial Nim language support (#6123)

This commit is contained in:
JJ 2023-03-26 15:06:48 -07:00 committed by GitHub
parent 5d7c90c5cf
commit c8fde8b6f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 412 additions and 0 deletions

View file

@ -0,0 +1,19 @@
(routine
(block) @function.inside) @function.around
; @class.inside (types?)
; @class.around
; paramListSuffix is strange and i do not understand it
(paramList
(paramColonEquals) @parameter.inside) @parameter.around
(comment) @comment.inside
(multilineComment) @comment.inside
(docComment) @comment.inside
(multilineDocComment) @comment.inside
(comment)+ @comment.around
(multilineComment) @comment.around
(docComment)+ @comment.around
(multilineDocComment) @comment.around