-
I have
Video of bug showing both behaviours: 0001-1528.mp4Note: same config produces both behaviours and it flips randomly. Sometimes it works, other times it doesn't. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Why do you have both Can you change |
Beta Was this translation helpful? Give feedback.
-
I have set
I have tried it earlier. It didn't work. Now behaviour for |
Beta Was this translation helpful? Give feedback.
-
With fzf 0.53 a new I never realized it I do have a solution for you though, with 3d214f8 I made it so all actions that start with require("fzf-lua").fzf_exec({ 1, 2, 3, 4 }, {
keymap = { fzf = { ["backward-eof"] = "print(_myaction)+accept" } },
actions = {
["enter"] = function(sel, _opts)
print("enter, num sel:", #sel)
end,
["_myaction"] = function(sel, _opts)
print("_myaction, num sel", #sel)
end
}
}) |
Beta Was this translation helpful? Give feedback.
With fzf 0.53 a new
print
action was added that enabled combination of both fzf and fzf-lua's actions so now we could much more easily achieveselect-all+accept
for any action not just the default (and many other more involved setups).I never realized it
backward-eof
would be used in this way and that there would be a differentiation between the default action andenter
(orreturn
, same thing).I do have a solution for you though, with 3d214f8 I made it so all actions that…