mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 19:46:58 -04:00
* 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
35 lines
309 B
Python
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
|