diff --git a/bashrc b/bashrc index 26baad9..9c3b4ce 100644 --- a/bashrc +++ b/bashrc @@ -31,4 +31,9 @@ if type -t __git_complete >/dev/null; then __git_complete gp _git_push fi -test -f /usr/share/fzf/shell/key-bindings.bash && . /usr/share/fzf/shell/key-bindings.bash +for fn in /usr/share/fzf/shell/key-bindings.bash /usr/share/fzf/key-bindings.bash; do + if test -f $fn; then + . $fn + break + fi +done