[bash-completion] Fix #417 - Update command list

This commit is contained in:
Junegunn Choi
2015-11-12 13:47:52 +09:00
parent d29ae1c462
commit 57a37b5832
2 changed files with 13 additions and 2 deletions

View File

@@ -261,6 +261,17 @@ export FZF_COMPLETION_TRIGGER='~~'
export FZF_COMPLETION_OPTS='+c -x'
```
#### Supported 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
commands as well like follows.
```sh
# There are also _fzf_path_completion and _fzf_dir_completion
complete -F _fzf_file_completion -o default -o bashdefault doge
```
Usage as Vim plugin
-------------------