Closed nickjj closed 4 years ago
What's the output of /home/nick/.fzf/bin/fzf --version
?
Hmm, it's 0.21.1 but I did a git pull
in ~/.fzf
and running git tag
there shows 0.22.0. Looks like I needed to also run ./install
.
Thanks. It's working now with the latest master commit on both repos after upgrading fzf.
Yep, same problem here -- I was stuck on fzf 0.18. Works again after upgrading fzf to 0.22. Thanks!
I landed here because I got an error with a similar report.
It happened after running :PlugUpdate
.
I hadn't considered that I might need to check the state of fzf
, too. That's silly in hindsight, but one often forgets about these tools after setting them up the first time.
Anyway, brew upgrade fzf
brought fzf
to the latest version and everything started to work again in Vim.
@mokagio You can make vim-plug call fzf#install()
to automatically download the latest binary after update. This is how it's done.
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
man fzf
)Hi,
The error happens when using:
Edit: After a bit of debugging I was able to pin point it down to commit 4145f53f3d343c389ff974b1f1a68eeb39fba18b. If I use any commit before that one then everything works without issues.
Everything was working great for a long time but about a week ago I ran a
:PlugUpdate
after having not run it for months and now every time I run:Rg foo
this error pops up instead of returning the search results:I have a bit of custom fzf related configuration in my vimrc file but the same error happens even if I remove all of my custom configuration, but here's my custom config for reference since it ties back to the exact error above:
I also get this error when running the
:Buffers
command:It's also worth pointing out that finding files to open in fzf is still working and I can run
:Commits
successfully too. I haven't done an exhaustive check on which commands work and fail but it looks like in this case both commands blow up withpreview.sh
.