We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c40d45 commit 0208227Copy full SHA for 0208227
1 file changed
lua/fzf-lua/profiles/hide.lua
@@ -84,6 +84,10 @@ return {
84
end
85
return act
86
end, opts.actions)
87
+ -- resize event was only added in fzf v0.46
88
+ if not FzfLua.utils.has(opts, "fzf", { 0, 46 }) then
89
+ return opts
90
+ end
91
-- Hijack the resize event to reload buffer/tab list on unhide
92
table.insert(opts._fzf_cli_args, "--bind=" .. libuv.shellescape("resize:+transform:"
93
.. shell.stringify_data(function(_, _, _)
0 commit comments