You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If fzf's key-bindings.fish is enabled as described in the Arch Wiki, and mcfly-fzf is also enabled, mcfly-fzf is not overriding fzf's Ctrl+R binding. Here are the relevant config files:
~/.config/fish/config.fish:
ifstatus is-interactive
command-q mcfly && mcfly init fish | source
command-q mcfly-fzf && mcfly-fzf init fish | source
end
function fish_user_key_bindings
fzf_key_bindings
end
I should mention that it's not desirable to turn off fzf's key-bindings.fish because it also contains other key bindings apart from Ctrl+R, such as Ctrl+T and Alt+C.
The text was updated successfully, but these errors were encountered:
Here, I suspect you'll want to make some manual changes to your fish config -- I'm not sure what mcfly-fzf can do to avoid conflicts. My first idea would be to make sure you're sourcing your fzf_key_bindings setup before you source the mcfly-fzf setup. Alternatively, you might try running bind \cr __mcfly-fzf-history-widget manually close to the end of your config.
If
fzf
's key-bindings.fish is enabled as described in the Arch Wiki, andmcfly-fzf
is also enabled,mcfly-fzf
is not overridingfzf
's Ctrl+R binding. Here are the relevant config files:~/.config/fish/config.fish
:~/.config/fish/functions/fish_user_key_bindings.fish
:I should mention that it's not desirable to turn off
fzf
'skey-bindings.fish
because it also contains other key bindings apart from Ctrl+R, such as Ctrl+T and Alt+C.The text was updated successfully, but these errors were encountered: