We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NotFound
fzf
Thanks for this package, it's awesome!
I'm unable to use sad with the fzf preview window, I always get an error like so:
sad
Here's what my env looks like for fzf:
~/dotfiles debian-buster *% [1] env | rg fzf FZF_COMPLETION_OPTS=-i FZF_DEFAULT_COMMAND=bash -c "fdfind --type file --follow . \$(git rev-parse --show-cdup 2>/dev/null && echo --hidden)" FZF_CTRL_T_COMMAND=fd_with_git --color always FZF_CTRL_T_OPTS=--ansi --preview-window 'right:50%' --preview 'bat --color always --style=grid,changes --line-range :300 {}' FZF_DEFAULT_OPTS=--height 60% --extended --bind ctrl-alt-a:select-all,ctrl-alt-d:deselect-all,F1:toggle-preview
The text was updated successfully, but these errors were encountered:
I think this is caused by fzf being in PATH, but not as /usr/bin/fzf
/usr/bin/fzf
For instance, on my machine I have fzf in ~/.fzf/bin/fzf and I got the same bug. It was solved by installing fzf with yay.
~/.fzf/bin/fzf
yay
Sorry, something went wrong.
hummmm, interesting, I think this is an easy fix, will just have to use the which package instead of just doingfzf
which
sad/src/fzf.rs
Line 41 in 8f423fc
this line seems to be the issue
its weird though, because some how fzf is found by which but not in the PATH. i guess it will be solved one way or another
PATH
In my case, FZF is at /usr/bin/fzf and as you can see in the screenshot it gets launched -- the issue is that the preview window doesn't work
No branches or pull requests
Thanks for this package, it's awesome!
I'm unable to use
sad
with thefzf
preview window, I always get an error like so:Here's what my env looks like for
fzf
:The text was updated successfully, but these errors were encountered: