[vim] Remove unnecessary ternary expression

Related: https://github.com/junegunn/fzf.vim/issues/378
pull/909/merge
Junegunn Choi 7 years ago
parent 669a6fee40
commit 0665fe0413
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

@ -128,7 +128,7 @@ function! s:fzf_exec()
throw 'fzf executable not found'
endif
endif
return s:is_win ? s:exec : fzf#shellescape(s:exec)
return fzf#shellescape(s:exec)
endfunction
function! s:tmux_enabled()

Loading…
Cancel
Save