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
25 lines
266 B
Python
25 lines
266 B
Python
def aligned_indent(arg1,
|
|
arg2):
|
|
pass
|
|
|
|
def aligned_indent2(
|
|
arg1,
|
|
arg2
|
|
):
|
|
pass
|
|
|
|
aligned_indent(1,
|
|
2)
|
|
|
|
|
|
aligned_indent(1,
|
|
2
|
|
)
|
|
|
|
aligned_indent(
|
|
1,
|
|
2
|
|
)
|
|
|
|
foodsadsa(sdada,
|
|
2
|