nvim-treesitter/tests/indent/python/parenthesized_conditions.py
Grace Petryk f16a775830
feat(python): Improved python indentation (#6859)
* feat: improve python indentation

* use lua-match

* revert concatenated_string changes, handle function def hanging indents

* lint

* add delimiters to param query

* add test cases
2024-07-16 20:13:41 +09:00

35 lines
309 B
Python

if (
True
or 1
or False
):
pass
if (
True
or 1
or False):
pass
if (True
or 1
or False):
pass
while (
False
or 1
or False
):
pass
while (
False
or 1
or False):
pass
while (False
or 1
or False):
pass