From b87aacbbfefd052bf256fc376b8d92dc28678449 Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Tue, 6 Mar 2018 10:55:47 +0000 Subject: [PATCH] Do not treat win32unix as Windows. This reverts 16568f4815 which was, I believe now, mistaken. See #471. --- autoload/gitgutter/utility.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/gitgutter/utility.vim b/autoload/gitgutter/utility.vim index ccc4208..82bf9ee 100644 --- a/autoload/gitgutter/utility.vim +++ b/autoload/gitgutter/utility.vim @@ -216,5 +216,5 @@ else endif function! s:windows() - return has('win64') || has('win32') || has('win32unix') || has('win16') + return has('win64') || has('win32') || has('win16') endfunction