Skip to content

Commit 2a6ea80

Browse files
committed
s:find_opening_paren: use known nearest for stopline
1 parent 289b134 commit 2a6ea80

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

indent/python.vim

+8-10
Original file line numberDiff line numberDiff line change
@@ -107,18 +107,16 @@ function! s:find_opening_paren(...)
107107
" Return if cursor is in a comment.
108108
exe 'if' s:skip_search '| return [0, 0] | endif'
109109

110-
let positions = []
110+
let nearest = [0, 0]
111111
for [p, maxoff] in items(s:paren_pairs)
112-
let stopline = max([0, line('.') - maxoff])
113-
call add(positions, searchpairpos(
114-
\ '\V'.p[0], '', '\V'.p[1], 'bnW', s:skip_special_chars, stopline))
112+
let stopline = max([0, line('.') - maxoff, nearest[0]])
113+
let next = searchpairpos(
114+
\ '\V'.p[0], '', '\V'.p[1], 'bnW', s:skip_special_chars, stopline)
115+
if next[0] && (next[0] > nearest[0] || (next[0] == nearest[0] && next[1] > nearest[1]))
116+
let nearest = next
117+
endif
115118
endfor
116-
117-
" Remove empty matches and return the type with the closest match
118-
call filter(positions, 'v:val[0]')
119-
call sort(positions, 's:pair_sort')
120-
121-
return get(positions, -1, [0, 0])
119+
return nearest
122120
endfunction
123121

124122
" Find the start of a multi-line statement

0 commit comments

Comments
 (0)