From 12214f5809a21a76cf0ae622cd7af1544c99fb15 Mon Sep 17 00:00:00 2001 From: command_block Date: Wed, 12 Aug 2026 05:54:01 +0000 Subject: [PATCH] fix: Tab binding not working with other plugins --- conf.d/fifc.fish | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/conf.d/fifc.fish b/conf.d/fifc.fish index 87ba7cf..868992e 100644 --- a/conf.d/fifc.fish +++ b/conf.d/fifc.fish @@ -17,8 +17,10 @@ if status is-interactive set -qU fifc_custom_fzf_opts or set -U fifc_custom_fzf_opts - for mode in default insert - bind --mode $mode $fifc_keybinding _fifc + function _fifc_fish_key_bindings --on-variable fish_key_bindings + for mode in default insert + bind --mode $mode $fifc_keybinding _fifc + end end # Set sources rules @@ -67,4 +69,5 @@ end # Fisher function _fifc_uninstall --on-event fifc_uninstall + function --earse _fifc_fish_key_bindings; end end