We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2847700 commit b56cd2fCopy full SHA for b56cd2f
1 file changed
lua/fzf-lua/providers/meta.lua
@@ -194,7 +194,8 @@ M.global = function(opts)
194
-- with-nth for the transform (e.g. for blines)
195
-- TODO: we can probably inerit all opts but I'm not sure what would be
196
-- the effects of that, this entire picker needs refactoring
197
- local picker_opts = config.normalize_opts(t.opts, name:gsub("^lsp_", "lsp."))
+ local picker_opts = config.normalize_opts(t.opts,
198
+ name:gsub("^lsp_", "lsp."):gsub("^git_", "git."):gsub("^dap_", "dap."))
199
if not utils.map_get(def, "opts.fzf_opts") then utils.map_set(def, "opts.fzf_opts", {}) end
200
def.opts.fzf_opts = vim.tbl_deep_extend("force", def.opts.fzf_opts, picker_opts.fzf_opts)
201
-- Instantiate the previewer, opts isn't guaranteed if the picker
0 commit comments