-
It seems in recent updates (actually have not updated nvim deps for months), the opts.fzf_opts = {
["--preview-window"] = "nohidden,down,50%",
["--preview"] = fzflua.shell.raw_preview_action_cmd(function(items)
if has_exa then
return string.format(
"cd %s ; eza --color=always --icons=always --group-directories-first -a %s",
preview_cwd,
items[1]
)
end
return string.format("cd %s ; ls %s", preview_cwd, items[1])
end), Now it is not working because |
Beta Was this translation helpful? Give feedback.
Answered by
towry
Jul 22, 2025
Replies: 1 comment 1 reply
-
Use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
towry
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use
shell.stringify_cmd
.