summaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-06-04 15:15:46 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-06-04 15:15:46 +0900
commit773133c4ce80b55ebc2bc9a79d3ec1c6b5b03d17 (patch)
treed04320b70bbcbd91973e1b5ed291362a40e07fac /plugin
parentca0b3b6fd7517aaedcb7517804e2040a8a7aad95 (diff)
[vim] Allow running install --bin on Cygwin
Diffstat (limited to 'plugin')
-rw-r--r--plugin/fzf.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/fzf.vim b/plugin/fzf.vim
index 8bdeb3b0..d3dcadf6 100644
--- a/plugin/fzf.vim
+++ b/plugin/fzf.vim
@@ -110,7 +110,7 @@ function! s:fzf_exec()
let s:exec = s:fzf_go
elseif executable('fzf')
let s:exec = 'fzf'
- elseif s:is_win
+ elseif s:is_win && !has('win32unix')
call s:warn('fzf executable not found.')
call s:warn('Download fzf binary for Windows from https://github.com/junegunn/fzf-bin/releases/')
call s:warn('and place it as '.s:base_dir.'\bin\fzf.exe')