Browse Source

Merge 21b3a42bff into 5548a1a937

pull/330/merge
Michał Blinkiewicz 1 year ago
committed by GitHub
parent
commit
221e7bfd01
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      autoload/vundle/installer.vim

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

@ -511,7 +511,13 @@ endf
" return -- the return value from system()
" ---------------------------------------------------------------------------
func! s:system(cmd) abort
return system(a:cmd)
let cmd = a:cmd
if !empty(&encoding) && !empty(&termencoding)
if &encoding !=? &termencoding
let cmd = iconv(a:cmd, &encoding, &termencoding)
endif
endif
return system(cmd)
endf


Loading…
Cancel
Save