From 6ffad17c49cbb1e057b9fbb7c9e311476c3859b6 Mon Sep 17 00:00:00 2001 From: lelgenio Date: Tue, 7 Dec 2021 21:50:18 -0300 Subject: [PATCH] fish: fix fzf keybinds --- dotfiles/fish/keys.fish | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dotfiles/fish/keys.fish b/dotfiles/fish/keys.fish index 5dace01..d28146e 100644 --- a/dotfiles/fish/keys.fish +++ b/dotfiles/fish/keys.fish @@ -34,8 +34,10 @@ end bind \cy 'commandline | wl-copy -n' # Enable fzf key bindings -command -qs fzf_key_bindings && - fzf_key_bindings &> /dev/null +if test -f /usr/share/fzf/key-bindings.fish + source /usr/share/fzf/key-bindings.fish + fzf_key_bindings +end function rcd #{{{