Browse Source

Add support for cygwin shells on Windows

pull/288/head
Chronial 13 years ago
parent
commit
50647ec971
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/installer.vim

+ 1
- 1
autoload/vundle/installer.vim View File

@ -260,7 +260,7 @@ func! g:shellesc(cmd) abort
endf
func! g:shellesc_cd(cmd) abort
if (has('win32') || has('win64'))
if ((has('win32') || has('win64')) && match(&shellcmdflag, "/") != -1)
let cmd = substitute(a:cmd, '^cd ','cd /d ','') " add /d switch to change drives
let cmd = g:shellesc(cmd)
return cmd


Loading…
Cancel
Save