[vim] Remove unnecessary pushd/popd in :FZF

It is already handled by its caller.
This commit is contained in:
Junegunn Choi 2015-04-14 10:35:51 +09:00
parent a7cb1a78df
commit 51a19a2804

View File

@ -320,14 +320,9 @@ function! s:cmd_callback(lines) abort
elseif key == 'ctrl-v' | let cmd = 'vsplit'
else | let cmd = 'e'
endif
call s:pushd(s:opts)
try
for item in a:lines
execute cmd s:escape(item)
endfor
finally
call s:popd(s:opts)
endtry
for item in a:lines
execute cmd s:escape(item)
endfor
endfunction
function! s:cmd(bang, ...) abort
@ -346,7 +341,6 @@ function! s:cmd(bang, ...) abort
if s:legacy
call fzf#run(extend({ 'options': join(args), 'sink': 'e' }, opts))
else
let s:opts = opts
call fzf#run(extend({ 'options': join(args), 'sink*': function('<sid>cmd_callback') }, opts))
endif
endfunction