Support msys uname

This commit is contained in:
2019-09-11 23:12:10 -04:00
parent 20f2ea2aca
commit a4d24f3b17
2 changed files with 2 additions and 1 deletions

2
vimrc
View File

@@ -37,7 +37,7 @@ let s:uname = system("echo -n \"$(uname)\"")
let s:vim_dir = $HOME . "/.vim"
function! IsWindows()
if s:uname =~ "mingw"
if s:uname =~ "mingw" || s:uname =~ "msys"
return 1
endif
return 0