From 0e140ded51d8b2c8dd3ff80680dea03a2cfe9228 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Thu, 20 Aug 2026 09:11:13 +0800 Subject: [PATCH] vim-patch:bce3eb1: runtime(doc): clarify the 'findfunc' option (#41389) Remove the note about "this function is called only once per :find command invocation". fixes: vim/vim#21062 https://github.com/vim/vim/commit/bce3eb1fae71671b39756a77c9b1db203311ba0c Co-authored-by: Christian Brabandt --- runtime/doc/options.txt | 1 - runtime/lua/vim/_meta/options.gen.lua | 1 - src/nvim/options.lua | 1 - 3 files changed, 3 deletions(-) diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 87dc10076f..9c4fe86f5b 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -2978,7 +2978,6 @@ A jump table for the options with a short description can be found at |Q_op|. The function should return a List, which is handled similarly to the return value of a |:command-completion-customlist| function. - The function is called only once per |:find| command invocation. The function can process all the directories specified in 'path'. If a match is found, the function should return a |List| containing diff --git a/runtime/lua/vim/_meta/options.gen.lua b/runtime/lua/vim/_meta/options.gen.lua index a3732f1ae7..b602fab42f 100644 --- a/runtime/lua/vim/_meta/options.gen.lua +++ b/runtime/lua/vim/_meta/options.gen.lua @@ -2644,7 +2644,6 @@ vim.go.fcs = vim.go.fillchars --- The function should return a List, which is handled similarly to the --- return value of a `:command-completion-customlist` function. --- ---- The function is called only once per `:find` command invocation. --- The function can process all the directories specified in 'path'. --- --- If a match is found, the function should return a `List` containing diff --git a/src/nvim/options.lua b/src/nvim/options.lua index da2a545a86..8cde4a24d2 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -3438,7 +3438,6 @@ local options = { The function should return a List, which is handled similarly to the return value of a |:command-completion-customlist| function. - The function is called only once per |:find| command invocation. The function can process all the directories specified in 'path'. If a match is found, the function should return a |List| containing