fix(leo): intentation fix of parenthesis

This commit is contained in:
Robert Horvath 2025-01-03 15:07:57 -03:00 committed by Christian Clason
parent cfbc1c0e0f
commit 6935286b4e

View file

@ -21,6 +21,19 @@
(#set! indent.open_delimiter "(")
(#set! indent.close_delimiter ")"))
((function_arguments) @indent.align
(#set! indent.open_delimiter "(")
(#set! indent.close_delimiter ")"))
(parenthesized_expression
")" @indent.branch)
(function_parameters
")" @indent.branch)
(function_arguments
")" @indent.branch)
(record_declaration
"}" @indent.branch)
@ -31,10 +44,10 @@
"}" @indent.branch)
(array_expression
"}" @indent.branch)
"]" @indent.branch)
(tuple_expression
"}" @indent.branch)
")" @indent.branch)
(items_block
"}" @indent.branch)