aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/python_spec.lua
diff options
context:
space:
mode:
authorGeorge Harker <george@george-graphics.co.uk>2023-03-14 12:25:38 -0700
committerStephan Seitz <stephan.seitz@fau.de>2023-03-15 22:44:59 +0100
commitfa0644667ea7ee7a72efdb69c471de4953a11019 (patch)
treef36f6f5a20ed8e3ffb5aa60578efaa32c7b8452c /tests/indent/python_spec.lua
parentUpdate parsers: elixir, haskell, php, sql (diff)
downloadnvim-treesitter-fa0644667ea7ee7a72efdb69c471de4953a11019.tar
nvim-treesitter-fa0644667ea7ee7a72efdb69c471de4953a11019.tar.gz
nvim-treesitter-fa0644667ea7ee7a72efdb69c471de4953a11019.tar.bz2
nvim-treesitter-fa0644667ea7ee7a72efdb69c471de4953a11019.tar.lz
nvim-treesitter-fa0644667ea7ee7a72efdb69c471de4953a11019.tar.xz
nvim-treesitter-fa0644667ea7ee7a72efdb69c471de4953a11019.tar.zst
nvim-treesitter-fa0644667ea7ee7a72efdb69c471de4953a11019.zip
fix: change folding algorithm to fix Python indents
Diffstat (limited to 'tests/indent/python_spec.lua')
-rw-r--r--tests/indent/python_spec.lua17
1 files changed, 15 insertions, 2 deletions
diff --git a/tests/indent/python_spec.lua b/tests/indent/python_spec.lua
index b8856b3a0..b1e94cbf8 100644
--- a/tests/indent/python_spec.lua
+++ b/tests/indent/python_spec.lua
@@ -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(