mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
fix: change folding algorithm to fix Python indents
This commit is contained in:
parent
cd436f92f6
commit
fa0644667e
4 changed files with 85 additions and 17 deletions
|
|
@ -20,3 +20,11 @@ except:
|
|||
pass
|
||||
finally:
|
||||
pass
|
||||
|
||||
while (a > 4 and
|
||||
b > 5):
|
||||
pass
|
||||
|
||||
try:
|
||||
pass
|
||||
|
||||
|
|
|
|||
|
|
@ -19,12 +19,25 @@ describe("indent Python:", function()
|
|||
run:new_line("aligned_indent.py", { on_line = 1, text = "arg3,", indent = 19 })
|
||||
run:new_line("basic_blocks.py", { on_line = 1, text = "wait,", indent = 4 })
|
||||
run:new_line("basic_blocks.py", { on_line = 6, text = "x += 1", indent = 4 })
|
||||
run:new_line("basic_blocks.py", { on_line = 10, text = "x += 1", indent = 8 })
|
||||
run:new_line("basic_blocks.py", { on_line = 7, text = "x += 1", indent = 4 })
|
||||
run:new_line("basic_blocks.py", { on_line = 11, text = "x += 1", indent = 8 })
|
||||
run:new_line("basic_blocks.py", { on_line = 10, text = "x += 1", indent = 8 })
|
||||
run:new_line("basic_blocks.py", { on_line = 14, text = "x += 1", indent = 8 })
|
||||
run:new_line("basic_collections.py", { on_line = 3, text = "4,", indent = 4 })
|
||||
run:new_line("comprehensions.py", { on_line = 8, text = "if x != 2", indent = 4 })
|
||||
run:new_line("control_flow.py", { on_line = 2, text = "x = 4", indent = 4 })
|
||||
run:new_line("control_flow.py", { on_line = 4, text = "x = 4", indent = 4 })
|
||||
run:new_line("control_flow.py", { on_line = 6, text = "x = 4", indent = 4 })
|
||||
run:new_line("control_flow.py", { on_line = 9, text = "x = 4", indent = 4 })
|
||||
run:new_line("control_flow.py", { on_line = 12, text = "x = 4", indent = 4 })
|
||||
run:new_line("control_flow.py", { on_line = 15, text = "x = 4", indent = 4 })
|
||||
run:new_line("control_flow.py", { on_line = 18, text = "x = 4", indent = 4 })
|
||||
run:new_line("control_flow.py", { on_line = 20, text = "x = 4", indent = 4 })
|
||||
run:new_line("control_flow.py", { on_line = 22, text = "x = 4", indent = 4 })
|
||||
run:new_line("control_flow.py", { on_line = 24, text = "c < 6 and", indent = 7 })
|
||||
run:new_line("control_flow.py", { on_line = 26, text = "x = 4", indent = 4 })
|
||||
run:new_line("control_flow.py", { on_line = 29, text = "x = 4", indent = 4 })
|
||||
run:new_line("branches.py", { on_line = 25, text = "x > 9 and", indent = 4 })
|
||||
run:new_line("branches.py", { on_line = 29, text = "and x > 9", indent = 4 })
|
||||
run:new_line("hanging_indent.py", { on_line = 1, text = "arg0,", indent = 8 })
|
||||
run:new_line("hanging_indent.py", { on_line = 5, text = "0,", indent = 4 })
|
||||
run:new_line(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue