aboutsummaryrefslogtreecommitdiffstats
path: root/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 /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 'lua')
-rw-r--r--lua/nvim-treesitter/indent.lua39
1 files changed, 35 insertions, 4 deletions
diff --git a/lua/nvim-treesitter/indent.lua b/lua/nvim-treesitter/indent.lua
index c3e4c0888..cf819d05b 100644
--- a/lua/nvim-treesitter/indent.lua
+++ b/lua/nvim-treesitter/indent.lua
@@ -137,7 +137,13 @@ function M.get_indent(lnum)
while node do
-- do 'autoindent' if not marked as @indent
- if not q.indent[node:id()] and q.auto[node:id()] and node:start() < lnum - 1 and lnum - 1 <= node:end_() then
+ if
+ not q.indent[node:id()]
+ and not q.aligned_indent[node:id()]
+ and q.auto[node:id()]
+ and node:start() < lnum - 1
+ and lnum - 1 <= node:end_()
+ then
return -1
end
@@ -171,7 +177,7 @@ function M.get_indent(lnum)
should_process
and (
q.indent[node:id()]
- and (srow ~= erow or is_in_err)
+ and (srow ~= erow or is_in_err or q.indent[node:id()].immediate_indent)
and (srow ~= lnum - 1 or q.indent[node:id()].start_at_same_line)
)
then
@@ -183,12 +189,16 @@ function M.get_indent(lnum)
if q.aligned_indent[node:id()] and srow ~= erow and (srow ~= lnum - 1) then
local metadata = q.aligned_indent[node:id()]
local o_delim_node, is_last_in_line ---@type TSNode|nil, boolean|nil
+ local c_delim_node ---@type TSNode|nil
if metadata.delimiter then
---@type string
local opening_delimiter = metadata.delimiter and metadata.delimiter:sub(1, 1)
o_delim_node, is_last_in_line = find_delimiter(bufnr, node, opening_delimiter)
+ local closing_delimiter = metadata.delimiter and metadata.delimiter:sub(2, 2)
+ c_delim_node, _ = find_delimiter(bufnr, node, closing_delimiter)
else
o_delim_node = node
+ c_delim_node = node
end
if o_delim_node then
@@ -196,8 +206,29 @@ function M.get_indent(lnum)
-- hanging indent (previous line ended with starting delimiter)
indent = indent + indent_size * 1
else
- local _, o_scol = o_delim_node:start()
- return math.max(indent, 0) + o_scol + (metadata.increment or 1)
+ local o_srow, o_scol = o_delim_node:start()
+ local final_line_indent = false
+ if c_delim_node then
+ local c_srow, _ = c_delim_node:start()
+ if c_srow ~= o_srow and c_srow == lnum - 1 then
+ -- delims end on current line, and are not open and closed same line.
+ -- final_line_indent controls this behavior, for example this is not desirable
+ -- for a tuple.
+ final_line_indent = metadata.final_line_indent or false
+ end
+ end
+ if final_line_indent then
+ -- last line must be indented more in cases where
+ -- it would be same indent as next line
+ local aligned_indent = o_scol + (metadata.increment or 1)
+ if aligned_indent <= indent then
+ return indent + indent_size * 1
+ else
+ return aligned_indent
+ end
+ else
+ return o_scol + (metadata.increment or 1)
+ end
end
end
end