Update Vim plugin

Changes:
- Rename g:fzf_command to g:fzf_source
- Support multi-select mode
- Add fzf#run(vim_command, fzf_args) function

Todo:
- Faster startup with --disable-gems option when available
This commit is contained in:
Junegunn Choi
2013-11-17 02:41:10 +09:00
parent be3b948034
commit 90adda73b0
2 changed files with 28 additions and 14 deletions

View File

@@ -139,13 +139,25 @@ If you install fzf as a Vim plugin, `:FZF` command will be added.
```vim
:FZF
:FZF --no-sort
:FZF --no-sort -m
```
You can override the command which produces input to fzf.
You can override the source command which produces input to fzf.
```vim
let g:fzf_command = 'find . -type f'
let g:fzf_source = 'find . -type f'
```
And you can predefine default options to fzf command.
```vim
let g:fzf_options = '--no-color --extended'
```
For more advanced uses, you can call `fzf#run` function as follows.
```vim
:call fzf#run('tabedit', '-m +c')
```
Most of the time, you will prefer native Vim plugins with better integration