Mention _fzf_setup_completion helper function for bash

pull/1788/head
Junegunn Choi 5 years ago
parent 77cb906dfe
commit 9d842630c9
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -434,11 +434,12 @@ _fzf_compgen_dir() {
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
commands as well as follows.
commands as well by using `_fzf_setup_completion` helper function.
```sh
complete -F _fzf_path_completion -o default -o bashdefault ag
complete -F _fzf_dir_completion -o default -o bashdefault tree
# usage: _fzf_setup_completion path|dir COMMANDS...
_fzf_setup_completion path ag git kubectl
_fzf_setup_completion dir tree
```
Vim plugin

Loading…
Cancel
Save