Major update to Vim plugin

This commit is contained in:
Junegunn Choi 2014-03-25 19:55:52 +09:00
parent b8e438b6be
commit e7439ce193
3 changed files with 163 additions and 31 deletions

View File

@ -290,7 +290,9 @@ TODO :smiley:
Usage as Vim plugin Usage as Vim plugin
------------------- -------------------
If you install fzf as a Vim plugin, `:FZF` command will be added. ### `:FZF`
If you have set up fzf as a Vim plugin, `:FZF` command will be added.
```vim ```vim
" Look for files under current directory " Look for files under current directory
@ -303,27 +305,76 @@ If you install fzf as a Vim plugin, `:FZF` command will be added.
:FZF --no-sort -m /tmp :FZF --no-sort -m /tmp
``` ```
You can override the source command which produces input to fzf. Note that environment variables `FZF_DEFAULT_COMMAND` and `FZF_DEFAULT_OPTS`
also apply here.
### `fzf#run([options])`
For more advanced uses, you can call `fzf#run()` function which returns the list
of the selected items.
`fzf#run()` may take an options-dictionary:
| Option name | Type | Description |
| ----------- | ------- | ---------------------------------------------------------- |
| `source` | string | External command to generate input to fzf (e.g. `find .`) |
| `source` | list | Vim list as input to fzf |
| `sink` | string | Vim command to handle the selected item (e.g. `e`, `tabe`) |
| `sink` | funcref | Reference to function to process each selected item |
| `options` | string | Options to fzf |
| `dir` | string | Working directory |
#### Examples
If `sink` option is not given, `fzf#run` will simply return the list.
```vim ```vim
let g:fzf_source = 'find . -type f' let items = fzf#run({ 'options': '-m +c', 'dir': '~', 'source': 'ls' })
``` ```
And you can predefine default options to fzf command. But if `sink` is given as a string, the command will be executed for each
selected item.
```vim ```vim
let g:fzf_options = '--no-color --extended' " Each selected item will be opened in a new tab
let items = fzf#run({ 'sink': 'tabe', 'options': '-m +c', 'dir': '~', 'source': 'ls' })
``` ```
For more advanced uses, you can call `fzf#run` function as follows. We can also use a Vim list as the source as follows:
```vim ```vim
:call fzf#run('tabedit', '-m +c') " Choose a color scheme with fzf
call fzf#run({
\ 'source':
\ map(split(globpath(&rtp, "colors/*.vim"), "\n"),
\ "substitute(fnamemodify(v:val, ':t'), '\\..\\{-}$', '', '')"),
\ 'sink': 'colo',
\ 'options': '+m'
\ })
``` ```
Most of the time, you will prefer native Vim plugins with better integration `sink` option can be a function reference. The following example creates a
with Vim. The only reason one might consider using fzf in Vim is its speed. For handy mapping that selects an open buffer.
a very large list of files, fzf is significantly faster and it does not block.
```vim
" List of buffers
function! g:buflist()
redir => ls
silent ls
redir END
return split(ls, '\n')
endfunction
function! g:bufopen(e)
execute 'buffer '. matchstr(a:e, '^[ 0-9]*')
endfunction
nnoremap <Leader><Enter> :call fzf#run({
\ 'source': g:buflist(),
\ 'sink': function('g:bufopen'),
\ 'options': '+m +s',
\ })<CR>
```
Tips Tips
---- ----

View File

@ -1,4 +1,4 @@
" Copyright (c) 2013 Junegunn Choi " Copyright (c) 2014 Junegunn Choi
" "
" MIT License " MIT License
" "
@ -21,6 +21,9 @@
" OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION " OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
" WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. " WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
let s:cpo_save = &cpo
set cpo&vim
call system('type fzf') call system('type fzf')
if v:shell_error if v:shell_error
let s:fzf_rb = expand('<sfile>:h:h').'/fzf' let s:fzf_rb = expand('<sfile>:h:h').'/fzf'
@ -38,32 +41,73 @@ function! s:escape(path)
return substitute(a:path, ' ', '\\ ', 'g') return substitute(a:path, ' ', '\\ ', 'g')
endfunction endfunction
function! fzf#run(command, ...) function! fzf#run(...) abort
let cwd = getcwd() let dict = exists('a:1') ? a:1 : {}
try let temps = [tempname()]
let args = copy(a:000) let result = temps[0]
if len(args) > 0 && isdirectory(expand(args[-1])) let optstr = get(dict, 'options', '')
let dir = remove(args, -1) let cd = has_key(dict, 'dir')
execute 'chdir '.s:escape(dir)
if has_key(dict, 'source')
let source = dict.source
let type = type(source)
if type == 1
let prefix = source.'|'
elseif type == 3
let input = add(temps, tempname())[-1]
call writefile(source, input)
let prefix = 'cat '.s:escape(input).'|'
else
throw 'Invalid source type'
endif endif
let argstr = join(args) else
let tf = tempname() let prefix = ''
let prefix = exists('g:fzf_source') ? g:fzf_source.'|' : '' endif
let options = empty(argstr) ? get(g:, 'fzf_options', '') : argstr
execute 'silent !'.prefix.s:exec.' '.options.' > '.tf try
if !v:shell_error if cd
for line in readfile(tf) let cwd = getcwd()
if !empty(line) execute 'chdir '.s:escape(dict.dir)
execute a:command.' '.s:escape(line) endif
execute 'silent !'.prefix.s:exec.' '.optstr.' > '.result
redraw!
if v:shell_error
return []
endif
let lines = readfile(result)
if has_key(dict, 'sink')
for line in lines
if type(dict.sink) == 2
call dict.sink(line)
else
execute dict.sink.' '.s:escape(line)
endif endif
endfor endfor
endif endif
return lines
finally finally
execute 'chdir '.s:escape(cwd) if cd
redraw! execute 'chdir '.s:escape(cwd)
silent! call delete(tf) endif
for tf in temps
silent! call delete(tf)
endfor
endtry endtry
endfunction endfunction
command! -nargs=* -complete=dir FZF call fzf#run('silent e', <f-args>) function! s:cmd(...)
let args = copy(a:000)
let opts = {}
if len(args) > 0 && isdirectory(expand(args[-1]))
let opts.dir = remove(args, -1)
endif
call fzf#run(extend({ 'sink': 'e', 'options': join(args) }, opts))
endfunction
command! -nargs=* -complete=dir FZF call s:cmd(<f-args>)
let &cpo = s:cpo_save
unlet s:cpo_save

37
test/fzf.vader Normal file
View File

@ -0,0 +1,37 @@
Execute (Setup):
let g:dir = fnamemodify(g:vader_file, ':p:h')
Log 'Test directory: ' . g:dir
Execute (fzf#run with dir option):
let result = fzf#run({ 'options': '--filter=vdr', 'dir': g:dir })
AssertEqual ['fzf.vader'], result
let result = sort(fzf#run({ 'options': '--filter e', 'dir': g:dir }))
AssertEqual ['fzf.vader', 'test_fzf.rb'], result
Execute (fzf#run with Funcref command):
let g:ret = []
function! g:proc(e)
call add(g:ret, a:e)
endfunction
let result = sort(fzf#run({ 'sink': function('g:proc'), 'options': '--filter e', 'dir': g:dir }))
AssertEqual ['fzf.vader', 'test_fzf.rb'], result
AssertEqual ['fzf.vader', 'test_fzf.rb'], sort(g:ret)
Execute (fzf#run with string source):
let result = sort(fzf#run({ 'source': 'echo hi', 'options': '-f i' }))
AssertEqual ['hi'], result
Execute (fzf#run with list source):
let result = sort(fzf#run({ 'source': ['hello', 'world'], 'options': '-f e' }))
AssertEqual ['hello'], result
let result = sort(fzf#run({ 'source': ['hello', 'world'], 'options': '-f o' }))
AssertEqual ['hello', 'world'], result
Execute (fzf#run with string source):
let result = sort(fzf#run({ 'source': 'echo hi', 'options': '-f i' }))
AssertEqual ['hi'], result
Execute (Cleanup):
unlet g:dir
Restore