Browse Source

shell commands encoding fix

pull/330/head
Michał Blinkiewicz 13 years ago
parent
commit
7bf651e530
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      autoload/vundle/installer.vim

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

@ -270,7 +270,8 @@ func! g:shellesc_cd(cmd) abort
endf
func! s:system(cmd) abort
return system(a:cmd)
let cmd = iconv(a:cmd, &encoding, &termencoding)
return system(cmd)
endf
func! s:log(str) abort


Loading…
Cancel
Save