tree-sitter-bp/queries/indents.scm
Bruno BELANYI fc82b7e8bf WIP(tests): Hide 'select_cases' rule
It doesn't provide any more information to expose it.
2024-04-13 18:29:35 +01:00

29 lines
496 B
Scheme

; Expressions {{{
(list_expression) @indent.begin
(list_expression
"]" @indent.branch)
(map_expression) @indent.begin
(map_expression
"}" @indent.branch)
(select_expression) @indent.begin
(select_expression
")" @indent.branch)
; FIXME: how to fix this
; (select_expression
; "{" @indent.begin)
; (select_expression
; "}" @indent.branch)
; }}}
; Declarations {{{
(module) @indent.begin
(module
")" @indent.branch)
(module
"}" @indent.branch)
; }}}
; vim: sw=2 foldmethod=marker