mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-03 12:06:55 -04:00
29 lines
354 B
Scheme
29 lines
354 B
Scheme
[
|
|
(parameter_list)
|
|
(compound_statement)
|
|
(loop_statement)
|
|
(struct_declaration)
|
|
] @indent.begin
|
|
|
|
(compound_statement
|
|
"}" @indent.end)
|
|
|
|
(loop_statement
|
|
"}" @indent.end)
|
|
|
|
(function_declaration
|
|
")" @indent.end)
|
|
|
|
(struct_declaration
|
|
"}" @indent.end)
|
|
|
|
[
|
|
"else"
|
|
")"
|
|
"}"
|
|
] @indent.branch
|
|
|
|
[
|
|
(line_comment)
|
|
(block_comment)
|
|
] @indent.auto
|