diff --git a/doc/fzf-lua.txt b/doc/fzf-lua.txt index a4733887..32349059 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: 2023 November 05 +*fzf-lua.txt* For Neovim >= 0.5.0 Last change: 2023 November 22 ============================================================================== Table of Contents *fzf-lua-table-of-contents* @@ -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", @@ -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' @@ -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 = { @@ -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> ',