<!-- ISSUES NOT FOLLOWING THIS TEMPLATE WILL BE CLOSED AND DELETED --> <!-- Check all that apply [x] --> - [x] I have read through the manual page (`man fzf`) - [x] I have the latest version of fzf - [x] I have searched through the existing issues ## Info - OS - [x] Linux - [ ] Mac OS X - [ ] Windows - [ ] Etc. - Shell - [x] 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): ```# required for fzf [ -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!
man fzf)Info
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):
Thanks!