only key-bindings.bash I want use only the CTRL+R aka history search #4059
-
If I want only the new CTRL+R search in the history, whar can I do? Maybe use key-bindings.bash? And how? |
Beta Was this translation helpful? Give feedback.
Answered by
LangLangBart
Oct 25, 2024
Replies: 1 comment 1 reply
-
key-bindings.bash⌃ ControlT and ⌥ OptionC can be disabled by setting their environment variable counterpart to an empty string12. FZF_CTRL_T_COMMAND= FZF_ALT_C_COMMAND= eval "$(fzf --bash)" completion.bashThe completion part is only triggered with the export FZF_COMPLETION_TRIGGER="s05Dx46VJrKXPVMRvfRe9dfzvDTQ" Footnotes |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
og900aero
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
key-bindings.bash
⌃ ControlT and ⌥ OptionC can be disabled by setting their environment variable counterpart to an empty string12.
completion.bash
The completion part is only triggered with the
FZF_COMPLETION_TRIGGER
(default:**
). If you want to avoid that, set it to an unlikely string.Footnotes
Setting up shell integration - junegunn/fzf: 🌸 A command-line fuzzy finder ↩
Make it possible to disable
Ctrl+T
/Alt+C
/ completions by elibarzilay · Pull Request #3678 · junegunn/fzf ↩