-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Description
- I have read through the manual page (
man fzf
) - I have the latest version of fzf
- I have searched through the existing issues
Info
- OS
- Linux
- Mac OS X
- Windows
- Etc.
- Shell
- bash
- zsh
- fish
Problem / Steps to reproduce
Not sure how to implement "Dedicated completion key" (https://github.com/junegunn/fzf/wiki/Configuring-fuzzy-completion) for bash. Here is my attempt at it (complete with commented out failed attempts):
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
[ -f ~/.git.bash ] && . ~/.git.bash
export FZF_COMPLETION_TRIGGER='' # previously '**'
bind -x '"\C-e": fzf-completion'
# alias ^E='fzf-completion' # doesn't work
Thanks!