Skip to content
Snippets Groups Projects
Unverified Commit 0665fe04 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

[vim] Remove unnecessary ternary expression

parent 669a6fee
No related branches found
No related tags found
No related merge requests found
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment