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
All the bindings override the default bash ones. But the important difference is that ALT-C and CTRL-T change the default behavior (capitalize-word, transpose-chars) but CTRL-R enhances the default reverse-search-history, so few want to turn it off (CTRL-R is one of the most loved features of fzf). Also, there is currently no FZF_CTRL_R_COMMAND, so introducing it just for disabling CTRL-R doesn't seem ideal.
If you do want the original reverse-search-history over the fzf's one, you can easily restore it like so:
Checklist
man fzf
)Output of
fzf --version
0.56.1 (brew)
OS
Shell
Problem / Steps to reproduce
Reference #3678
Ctrl-r conflicts with bash's reverse-search-history (C-r). FZF doesn't have an option to disable this binding
Add an option to skip fzf's Ctrl-r binding by setting a variable to an empty string, ie
FZF_CTRL_R_COMMAND= eval "$(fzf --zsh)"
The text was updated successfully, but these errors were encountered: