Fixed for grammar not being able to fetch.

Implementation of indent and textobjects querry for c3.
This commit is contained in:
TheZombie1999 2024-08-21 23:05:54 +00:00
parent b39b3e5dd2
commit 1873b02c63
3 changed files with 31 additions and 1 deletions

View File

@ -420,7 +420,7 @@ source = { git = "https://github.com/sogaiu/tree-sitter-janet-simple", rev = "51
[[grammar]]
name = "c3"
source = { git = "https://github.com/c3lang/tree-sitter-c3.git" , rev = "790a0326833cd647e00d8dec01268aa1ec2e3bdb" }
source = { git = "https://github.com/c3lang/tree-sitter-c3" , rev = "790a0326833cd647e00d8dec01268aa1ec2e3bdb" }
[[language]]
name = "c3"

View File

@ -0,0 +1,13 @@
[
(func_definition)
(if_stmt)
(enum_declaration)
(for_stmt)
(while_stmt)
(case_stmt)
(macro_declaration)
] @indent
[
"}"
] @outdent

View File

@ -0,0 +1,17 @@
(func_definition
body: (_) @function.inside) @function.around
(struct_declaration
body: (_) @class.inside) @class.around
(enum_declaration
body: (_) @class.inside) @class.around
(fn_parameter_list
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
(line_comment) @comment.inside
(line_comment)+ @comment.around
(doc_comment) @comment.inside
(doc_comment)+ @comment.outside