juneedahamed / vc.vim

Support for SVN, Git, HG and BZR
47 stars 9 forks source link

VCDiff or VCLog error #11

Open tyjak opened 7 years ago

tyjak commented 7 years ago

I can't figure out the problem, it seems to be related with "URL" not replaced as it should be...

Anymone has an idea about this issue ?

--ERROR--:Failed | FAILED CMD: svn log --non-interactive -l 50 URL :\ https://#####:8443/svn/#####/####/##########/######/####/####/##########.php :RESPONSE:svn: E155010: Nœud '/######/#####/###/######/URL : https:/#####:8443/

lilijreey commented 6 years ago

This plug is really Shit. SB.

morsedl commented 6 years ago

Might this be the same problem I had? The plugin assumes ENGLISH at the command line (CLI). See issue #13.

You'll either have to edit autoload/vc/svn.vim, switch to English at the CLI, or probably easiest is to put a wrapper around your VC (svn, git) program:

unset LANG
unset LANGUAGE
export LC_ALL=en_US.utf8
exec svn-real "$@"

which assumes you've moved svn to svn-real (or svn.exe to svn-real.exe)

Replace "svn" with "git" or whichever VC you are using in the above example if needed.

Hope this helps.