[vim] Apply FZF_DEFAULT_{OPTS,COMMAND} when using tmux splits (#87)

Fixed escaping bug of the previous commit
pull/92/head
Junegunn Choi 10 years ago
parent 4313c1c25c
commit 1e07b3b1c2

@ -148,11 +148,18 @@ function! s:execute(dict, command, temps)
endif
endfunction
function! s:env_var(name)
if exists('$'.a:name)
return a:name . "='". substitute(expand('$'.a:name), "'", "'\\\\''", 'g') . "' "
else
return ''
endif
endfunction
function! s:execute_tmux(dict, command, temps)
let command = s:env_var('FZF_DEFAULT_OPTS').s:env_var('FZF_DEFAULT_COMMAND').a:command
if has_key(a:dict, 'dir')
let command = 'cd '.s:escape(a:dict.dir).' && '.a:command
else
let command = a:command
let command = 'cd '.s:escape(a:dict.dir).' && '.command
endif
let splitopt = '-v'

Loading…
Cancel
Save