Ignore empty file path

This commit is contained in:
Junegunn Choi 2013-11-01 16:07:46 +09:00
parent 311c4a36e2
commit fd2472d11c
1 changed files with 4 additions and 1 deletions

View File

@ -29,7 +29,10 @@ function! s:fzf(args)
let prefix = exists('g:fzf_command') ? g:fzf_command.'|' : ''
execute "silent !".prefix."/usr/bin/env ruby ".s:exec." ".a:args." > ".tf
if !v:shell_error
execute 'silent e '.join(readfile(tf), '')
let file = join(readfile(tf), '')
if !empty(file)
execute 'silent e '.file
endif
endif
finally
silent! call delete(tf)