Update Vim plugin to take path argument

This commit is contained in:
Junegunn Choi
2013-11-20 10:31:33 +09:00
parent 724724bd8c
commit f28274109f
2 changed files with 23 additions and 5 deletions

View File

@@ -140,8 +140,14 @@ Usage as Vim plugin
If you install fzf as a Vim plugin, `:FZF` command will be added.
```vim
" Look for files under current directory
:FZF
:FZF --no-sort -m
" Look for files under your home directory
:FZF ~
" With options
:FZF --no-sort -m /tmp
```
You can override the source command which produces input to fzf.