mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2025-04-04 08:21:50 +00:00
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:
parent
be3b948034
commit
90adda73b0
18
README.md
18
README.md
@ -139,13 +139,25 @@ If you install fzf as a Vim plugin, `:FZF` command will be added.
|
|||||||
|
|
||||||
```vim
|
```vim
|
||||||
:FZF
|
: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
|
```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
|
Most of the time, you will prefer native Vim plugins with better integration
|
||||||
|
@ -23,23 +23,25 @@
|
|||||||
|
|
||||||
let s:exec = expand('<sfile>:h:h').'/fzf'
|
let s:exec = expand('<sfile>:h:h').'/fzf'
|
||||||
|
|
||||||
function! s:fzf(args)
|
function! fzf#run(command, args)
|
||||||
try
|
try
|
||||||
let tf = tempname()
|
let tf = tempname()
|
||||||
let prefix = exists('g:fzf_command') ? g:fzf_command.'|' : ''
|
let prefix = exists('g:fzf_source') ? g:fzf_source.'|' : ''
|
||||||
let fzf = executable(s:exec) ? s:exec : 'fzf'
|
let fzf = executable(s:exec) ? s:exec : 'fzf'
|
||||||
execute "silent !".prefix.fzf." ".a:args." > ".tf
|
let options = empty(a:args) ? get(g:, 'fzf_options', '') : a:args
|
||||||
|
execute "silent !".prefix.fzf.' '.options." > ".tf
|
||||||
if !v:shell_error
|
if !v:shell_error
|
||||||
let file = join(readfile(tf), '')
|
for line in readfile(tf)
|
||||||
if !empty(file)
|
if !empty(line)
|
||||||
execute 'silent e '.file
|
execute a:command.' '.line
|
||||||
endif
|
endif
|
||||||
|
endfor
|
||||||
endif
|
endif
|
||||||
finally
|
finally
|
||||||
silent! call delete(tf)
|
|
||||||
redraw!
|
redraw!
|
||||||
|
silent! call delete(tf)
|
||||||
endtry
|
endtry
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
command! -nargs=* FZF call s:fzf(<q-args>)
|
command! -nargs=* FZF call fzf#run('silent e', <q-args>)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user