nvim-treesitter/queries/leo/indents.scm
Phạm Huy Hoàng d198a75e2c
Fixup format (#5934)
* fix(format): newline between top-level field defs

* fixup: newline between node and comment

* fixup: optimize pattern
2024-01-20 18:47:56 +09:00

34 lines
724 B
Scheme

[
(record_declaration)
(struct_declaration)
(mapping_declaration)
(constant_declaration)
(return_statement)
(expression_statement)
(variable_declaration)
(loop_statement)
(assignment_statement)
(assert_statement)
(struct_expression)
(array_expression)
(tuple_expression)
(parenthesized_expression)
(items_block)
(block)
] @indent.begin
; if "if" statement and conditional statement are in separate lines
; conditional should be indented and when the conditional block
; starts dedented
(branch
(block
"{" @indent.end)) @indent.begin
((function_parameters) @indent.align
(#set! indent.open_delimiter "(")
(#set! indent.close_delimiter ")"))
[
(comment)
(ERROR)
] @indent.auto