diff --git a/doc/fzf-lua.txt b/doc/fzf-lua.txt index 064b35cb..7ee5c277 100644 --- a/doc/fzf-lua.txt +++ b/doc/fzf-lua.txt @@ -1,4 +1,4 @@ -*fzf-lua.txt* For Neovim >= 0.5.0 Last change: 2024 April 08 +*fzf-lua.txt* For Neovim >= 0.5.0 Last change: 2024 April 14 ============================================================================== Table of Contents *fzf-lua-table-of-contents* @@ -1372,6 +1372,12 @@ open an issue and I'll be more than happy to help.** -- severity_limit: keep any equal or more severe (lower) -- severity_bound: keep any equal or less severe (higher) }, + marks = { + marks = "", -- filter vim marks with a lua pattern + -- for example if you want to only show user defined marks + -- you would set this option as %a this would match characters from [A-Za-z] + -- or if you want to show only numbers you would set the pattern to %d (0-9). + }, complete_path = { cmd = nil, -- default: auto detect fd|rg|find complete = { ["default"] = actions.complete },