Update fzf completions dir

This commit is contained in:
Tony Grosinger 2022-11-18 10:41:15 -08:00
parent 73d5aaa2e9
commit fd4943837e

View File

@ -68,6 +68,11 @@ then
fi fi
# fzf # fzf
# TODO: Why are these files in so many different places?
if [ -f ~/.fzf.bash ]; then
source ~/.fzf.bash
fi
if [ -f /usr/share/bash-completion/completions/fzf ]; then if [ -f /usr/share/bash-completion/completions/fzf ]; then
source /usr/share/bash-completion/completions/fzf source /usr/share/bash-completion/completions/fzf
fi fi
@ -76,6 +81,9 @@ if [ -f /usr/share/doc/fzf/examples/key-bindings.bash ]; then
source /usr/share/doc/fzf/examples/key-bindings.bash source /usr/share/doc/fzf/examples/key-bindings.bash
fi fi
if [ -f /usr/share/doc/fzf/examples/completion.bash ]; then
source /usr/share/doc/fzf/examples/completion.bash
fi
# Add a local un-tracked bash-rc if present # Add a local un-tracked bash-rc if present
if [[ -f ${HOME}/.bashrc_local ]]; if [[ -f ${HOME}/.bashrc_local ]];