[x] I have read through the manual page of fzf (man fzf)
[x] I have searched through the existing issues
Neovim v 0.5
fzf v 0.27.2 (8255aa2)
I want to store the selected item into a variable. The error I get is that variable x (the selected item) is not defined. It seems that when the command let var = x is issued, x is not placed there as string. For that, I tried to use the reducer per below, but I couldn't get it right. Note that I am able to select my item, but when it comes to sink, it crashes.
man fzf
)I want to store the selected item into a variable. The error I get is that
variable x (the selected item) is not defined
. It seems that when the commandlet var = x
is issued, x is not placed there as string. For that, I tried to use the reducer per below, but I couldn't get it right. Note that I am able to select my item, but when it comes to sink, it crashes.My goal is to simply give it a list and put the selected item into a variable as a string.