neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 3ad9e6254b288b00dd08d904459d5f7ff330cfa1
parent 686a9edd381c8af518c1d5c6b0ced71369d64d55
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Wed, 14 Jan 2026 07:11:25 +0800

vim-patch:ec46b9d: runtime(matchit): include minor improvement from chrisbra/matchit

In particular, documentation update from
related: chrisbra/matchit#55

https://github.com/vim/vim/commit/ec46b9d4f2f5a5b36438215aae46c197688d86ac

Co-authored-by: Jon Parise <jon@indelible.org>

Diffstat:
Mruntime/pack/dist/opt/matchit/autoload/matchit.vim | 5++---
Mruntime/pack/dist/opt/matchit/doc/matchit.txt | 4++--
2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/runtime/pack/dist/opt/matchit/autoload/matchit.vim b/runtime/pack/dist/opt/matchit/autoload/matchit.vim @@ -1,6 +1,6 @@ " 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") @@ -71,9 +71,8 @@ function matchit#Match_wrapper(word, forward, mode) range " 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) diff --git a/runtime/pack/dist/opt/matchit/doc/matchit.txt b/runtime/pack/dist/opt/matchit/doc/matchit.txt @@ -286,8 +286,8 @@ Python example (simplified): > 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