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
The 'fzf' plugin is not checking if 'bat' and 'fd' are installed.
# Settings for fzf if command -v fzf > /dev/null ; then export FZF_COMPLETION_TRIGGER='**' # Cycle with tab export FZF_DEFAULT_OPTS='--bind tab:down --cycle' . /usr/share/fzf/key-bindings.bash . /usr/share/fzf/completion.bash # help:preview:Interactive preview for files in a folder preview () { fd -d 1 -t f | fzf --preview 'bat --color "always" --wrap "auto" {}' \ --bind 'alt-j:preview-down,alt-k:preview-up,ctrl-f:preview-page-down,ctrl-b:preview-page-up,ctrl-q:abort,ctrl-m:execute:(bat --paging=always \ {} < /dev/tty)' --preview-window=right:70% } else echo "[bash-config: fzf] fzf is not installed" fi
The text was updated successfully, but these errors were encountered:
victorbrca
No branches or pull requests
The 'fzf' plugin is not checking if 'bat' and 'fd' are installed.
The text was updated successfully, but these errors were encountered: