" matchit.vim: (global plugin) Extended "%" matching
" autload script of matchit plugin, see ../plugin/matchit.vim
-" Last Change: Jan 06, 2025
+" Last Change: Jan 09, 2026
" Neovim does not support scriptversion
if has("vimscript-4")
" Check for custom match function hook
if exists("b:match_function")
- let MatchFunc = b:match_function
try
- let result = call(MatchFunc, [a:forward])
+ let result = call(b:match_function, [a:forward])
if !empty(result)
call cursor(result)
return s:CleanUp(restore_options, a:mode, startpos)
let pattern = get(s:keywords, keyword, '')
if empty(pattern) | return [] | endif
- let flags = a:forward ? 'nW' : 'nbW'
- let [lnum, col] = searchpos('^\s*\%(' . pattern . '\)\>', flags, 0, 0,
+ " Forward-only. Backwards left as an exercise for the reader.
+ let [lnum, col] = searchpos('^\s*\%(' . pattern . '\)\>', 'nW' 0, 0,
\ 'indent(".") != ' . indent('.'))
return lnum > 0 ? [lnum, col] : []
endfunction