Skip to content

Commit

Permalink
[docgen] CI: autogenerate vimdoc
Browse files Browse the repository at this point in the history
skip-checks: true
  • Loading branch information
Github Actions committed Nov 22, 2023
1 parent b9b4080 commit c4fd435
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions doc/fzf-lua.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*fzf-lua.txt* For Neovim >= 0.5.0 Last change: 2023 November 05
*fzf-lua.txt* For Neovim >= 0.5.0 Last change: 2023 November 22

==============================================================================
Table of Contents *fzf-lua-table-of-contents*
Expand Down Expand Up @@ -1077,7 +1077,7 @@ open an issue and I'll be more than happy to help.**
-- start = "cursor" -- start display from cursor?
fzf_opts = {
-- hide filename, tiebreak by line no.
['--delimiter'] = "'[\\]:]'",
["--delimiter"] = "'[:]'",
["--with-nth"] = '2..',
["--tiebreak"] = 'index',
["--tabstop"] = "1",
Expand All @@ -1099,6 +1099,7 @@ open an issue and I'll be more than happy to help.**
-- 'tags_live_grep' options, `rg` prioritizes over `grep`
rg_opts = "--no-heading --color=always --smart-case",
grep_opts = "--color=auto --perl-regexp",
fzf_opts = { ["--tiebreak"] = "begin" },
actions = {
-- actions inherit from 'actions.files' and merge
-- this action toggles between 'grep' and 'live_grep'
Expand All @@ -1112,16 +1113,11 @@ open an issue and I'll be more than happy to help.**
ctags_file = nil, -- auto-detect from tags-option
ctags_autogen = false, -- dynamically generate ctags each call
multiprocess = true,
file_icons = true,
git_icons = true,
color_icons = true,
rg_opts = "--no-heading --color=always",
grep_opts = "--color=auto --perl-regexp",
fzf_opts = {
['--delimiter'] = "'[\\]:]'",
["--with-nth"] = '2..',
["--tiebreak"] = 'index',
},
file_icons = false,
git_icons = false,
rg_opts = "--color=never --no-heading",
grep_opts = "--color=never --perl-regexp",
fzf_opts = { ["--tiebreak"] = "begin" },
-- actions inherit from 'actions.files'
},
colorschemes = {
Expand Down Expand Up @@ -1213,6 +1209,10 @@ open an issue and I'll be more than happy to help.**
symbol_fmt = function(s, opts) return "[" .. s .. "]" end,
-- prefix child symbols. set to any string or `false` to disable
child_prefix = true,
fzf_opts = {
["--tiebreak"] = "begin",
["--info"] = "default",
},
},
code_actions = {
prompt = 'Code Actions> ',
Expand Down

0 comments on commit c4fd435

Please sign in to comment.