Merge pull request #626 from scrooloose/win32unix

Determine if we're running in Cygwin on Windows.
This commit is contained in:
Phil Runninger 2017-05-20 03:25:38 -04:00 committed by GitHub
commit fce10d1b10

View File

@ -133,7 +133,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