From 142a81619904363755453b4f8fa860a0e1862fbc Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Mon, 24 Oct 2011 17:13:53 -0700 Subject: [PATCH] Use git:// instead of https:// when specifying a github repo --- autoload/vundle/config.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/vundle/config.vim b/autoload/vundle/config.vim index e8443c1..7692582 100644 --- a/autoload/vundle/config.vim +++ b/autoload/vundle/config.vim @@ -43,7 +43,7 @@ func! s:parse_name(arg) if arg =~? '^\s*\(gh\|github\):\S\+' \ || arg =~? '^[a-z0-9][a-z0-9-]*/[^/]\+$' - let uri = 'https://github.com/'.split(arg, ':')[-1] + let uri = 'git://github.com/'.split(arg, ':')[-1] if uri !~? '\.git$' let uri .= '.git' endif