summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-11-12 13:47:52 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-11-12 13:53:36 +0900
commit57a37b5832061b5b9c1f04a96af6d36345fc8618 (patch)
treea707d3f74b416f08697caf06a6f7659a9481e8e7 /README.md
parentd29ae1c4622f69a2e607221220fc4044ce2644e2 (diff)
[bash-completion] Fix #417 - Update command list
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index 60698363..567271c5 100644
--- a/README.md
+++ b/README.md
@@ -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
-------------------