nvim: Remove fzf select one option

Removed the default option select one, it did not do anything. Now
trying with a 'default' opt for the actual plugin.
This commit is contained in:
Marty Oehme 2025-03-08 19:32:50 +01:00
parent 0ce49d758a
commit 2eebe047f6
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -56,7 +56,6 @@ return { -- file/item pickers and managers
end
end,
opts = {
fzf_opts = { ["--select-1"] = false },
keymap = {
builtin = {
true,
@ -78,7 +77,10 @@ return { -- file/item pickers and managers
},
},
},
}, -- FIXME: Does not seem to work with single result and still closes instantly?
defaults = { -- FIXME: Does not seem to work with single result and still closes instantly?
jump1 = false,
},
},
config = function(_, opts)
opts.actions = opts.actions or { true }
opts.actions["ctrl-q"] = require("fzf-lua").actions.file_sel_to_qf