mirror of https://github.com/helix-editor/helix
Add indentation for Python pattern matching
Add indentation for `match` and `case`.pull/4576/head
parent
e0b034dcd1
commit
b156f57618
|
@ -9,6 +9,8 @@
|
|||
(while_statement)
|
||||
(with_statement)
|
||||
(try_statement)
|
||||
(match_statement)
|
||||
(case_clause)
|
||||
(import_from_statement)
|
||||
|
||||
(parenthesized_expression)
|
||||
|
@ -33,6 +35,8 @@
|
|||
(while_statement)
|
||||
(with_statement)
|
||||
(try_statement)
|
||||
(match_statement)
|
||||
(case_clause)
|
||||
|
||||
(function_definition)
|
||||
(class_definition)
|
||||
|
|
Loading…
Reference in New Issue