X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/0c4a52f1f101f61376900fa655ffa256437bedc8..85bbe4706aa1666a90fc89684ad0787521d9df6e:/indent/python.vim diff --git a/indent/python.vim b/indent/python.vim index f13ae9e..c56c2dc 100644 --- a/indent/python.vim +++ b/indent/python.vim @@ -138,25 +138,21 @@ endfunction " Find possible indent(s) of the block starter that matches the current line. function! s:find_start_of_block(lnum, types, multiple) let r = [] - let types = copy(a:types) let re = '\V\^\s\*\('.join(a:types, '\|').'\)\>' let lnum = a:lnum let last_indent = indent(lnum) + 1 while lnum > 0 && last_indent > 0 let indent = indent(lnum) if indent < last_indent - for type in types - let re = '\v^\s*'.type.'>' - if getline(lnum) =~# re - if !a:multiple - return [indent] - endif - if index(r, indent) == -1 - let r += [indent] - endif + if getline(lnum) =~# re + if !a:multiple + return [indent] endif - endfor - let last_indent = indent(lnum) + if index(r, indent) == -1 + let r += [indent] + endif + let last_indent = indent + endif endif let lnum = prevnonblank(lnum - 1) endwhile