Mention _fzf_setup_completion helper function for bash

This commit is contained in:
Junegunn Choi 2019-12-06 12:03:34 +09:00
parent 77cb906dfe
commit 9d842630c9
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

View File

@ -434,11 +434,12 @@ _fzf_compgen_dir() {
On bash, fuzzy completion is enabled only for a predefined set of commands On bash, fuzzy completion is enabled only for a predefined set of commands
(`complete | grep _fzf` to see the list). But you can enable it for other (`complete | grep _fzf` to see the list). But you can enable it for other
commands as well as follows. commands as well by using `_fzf_setup_completion` helper function.
```sh ```sh
complete -F _fzf_path_completion -o default -o bashdefault ag # usage: _fzf_setup_completion path|dir COMMANDS...
complete -F _fzf_dir_completion -o default -o bashdefault tree _fzf_setup_completion path ag git kubectl
_fzf_setup_completion dir tree
``` ```
Vim plugin Vim plugin