From 0665fe04138866fcdd659dcae221672bf1f5f325 Mon Sep 17 00:00:00 2001
From: Junegunn Choi <junegunn.c@gmail.com>
Date: Wed, 31 May 2017 10:02:04 +0900
Subject: [PATCH] [vim] Remove unnecessary ternary expression

Related: https://github.com/junegunn/fzf.vim/issues/378
---
 plugin/fzf.vim | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugin/fzf.vim b/plugin/fzf.vim
index 81aff374..29175683 100644
--- a/plugin/fzf.vim
+++ b/plugin/fzf.vim
@@ -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()
-- 
GitLab