Update Vim plugin accordingly

This commit is contained in:
Junegunn Choi 2013-11-01 00:23:53 +09:00
parent f7efcc331a
commit 20ac8daeaa
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ function! s:fzf(args)
try
let tf = tempname()
let prefix = exists('g:fzf_command') ? g:fzf_command.'|' : ''
execute "silent !".prefix."/usr/bin/env bash ".s:exec." ".a:args." > ".tf
execute "silent !".prefix."/usr/bin/env ruby ".s:exec." ".a:args." > ".tf
if !v:shell_error
execute 'silent e '.join(readfile(tf), '')
endif