languages: Fix python indent block for more keywords (#30323)

Add `with`, `while`, `match`, `class` and `case` keywords as indent
block.

Release Notes:

- N/A
This commit is contained in:
Smit Barmase
2025-05-09 05:51:33 +05:30
committed by GitHub
parent 9810745465
commit 05a6c31ad8
+25
View File
@@ -24,6 +24,31 @@
body: (block) @indent
)
(with_statement
":" @start
body: (block) @indent
)
(while_statement
":" @start
body: (block) @indent
)
(match_statement
":" @start
body: (block) @indent
)
(class_definition
":" @start
body: (block) @indent
)
(case_clause
":" @start
consequence: (block) @indent
)
(try_statement
":" @start
body: (block) @indent