Closes #34002 `decrease_indent_patterns` should only contain mapping which are at same indent level with each other, which is not true for `match` and `case` mapping. Caused in https://github.com/zed-industries/zed/pull/33370 Release Notes: - N/A
18 lines
451 B
Scheme
18 lines
451 B
Scheme
(_ "[" "]" @end) @indent
|
|
(_ "{" "}" @end) @indent
|
|
(_ "(" ")" @end) @indent
|
|
|
|
(function_definition) @start.def
|
|
(class_definition) @start.class
|
|
(if_statement) @start.if
|
|
(for_statement) @start.for
|
|
(while_statement) @start.while
|
|
(with_statement) @start.with
|
|
(match_statement) @start.match
|
|
(try_statement) @start.try
|
|
(elif_clause) @start.elif
|
|
(else_clause) @start.else
|
|
(except_clause) @start.except
|
|
(finally_clause) @start.finally
|
|
(case_clause) @start.case
|