X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/955f7c02983ec2dd3c40fd46d6ad5665f9dd1831..f4f95ee041370e3e79bb72cb9b360a4ec5707785:/indent/python.vim?ds=sidebyside diff --git a/indent/python.vim b/indent/python.vim index a1dd43f..c3c6c03 100644 --- a/indent/python.vim +++ b/indent/python.vim @@ -243,17 +243,16 @@ function! s:indent_like_previous_line(lnum) let ignore_last_char = eval(s:skip_special_chars) " Search for final colon that is not inside something to be ignored. - while search(':', 'bcW', lnum) + while 1 let curpos = getpos(".")[2] if curpos == 1 | break | endif - if eval(s:skip_special_chars) + if eval(s:skip_special_chars) || text[curpos-1] =~ '\s' normal! h continue - endif - if !s:match_expr_on_line(s:skip_special_chars, lnum, curpos) + elseif text[curpos-1] == ':' return base + s:sw() endif - normal! h + break endwhile if text =~ '\\$' && !ignore_last_char