commit a9a5aec9c05bccc2e43b7b629141f0f1622013a2
parent f26eaf83551631e683e339f00e2c97bd6e8356d7
Author: Phil Runninger <prunninger@virtualhold.com>
Date: Thu, 6 Oct 2016 17:51:22 -0400
Determine if we're running in Cygwin on Windows.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/autoload/nerdtree.vim b/autoload/nerdtree.vim
@@ -103,7 +103,7 @@ endfunction
"FUNCTION: nerdtree#runningWindows(dir) {{{2
function! nerdtree#runningWindows()
- return has("win16") || has("win32") || has("win64")
+ return has("win16") || has("win32") || has("win64") || has("win32unix")
endfunction
" SECTION: View Functions {{{1