We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebdf242 commit f8cf874Copy full SHA for f8cf874
1 file changed
lua/fzf-lua/core.lua
@@ -1112,7 +1112,7 @@ M.setup_fzf_live_flags = function(command, opts)
1112
local action = M.can_transform(opts) and "transform" or "reload"
1113
table.insert(opts._fzf_cli_args, "--bind="
1114
.. libuv.shellescape(string.format("change:+%s:%s", action, reload_command)))
1115
- if utils.has(opts, "fzf", { 0, 35 }) and (opts.exec_empty_query or #query > 0) then
+ if opts.exec_empty_query or #query > 0 or type(opts.contents) == "function" then
1116
1117
.. libuv.shellescape(string.format("start:+%s:%s", action, reload_command)))
1118
end
0 commit comments