From f6ce31fa380bb73f8d443881c696226337eb0020 Mon Sep 17 00:00:00 2001 From: gmarik Date: Tue, 20 Dec 2011 03:07:12 -0600 Subject: [PATCH] https is a default proto - as `http` one just redirects to `https` on GitHub --- 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 6ee86a6..ee1e42b 100644 --- a/autoload/vundle/config.vim +++ b/autoload/vundle/config.vim @@ -41,7 +41,7 @@ endf func! s:parse_name(arg) let arg = a:arg - let git_proto = exists('g:vundle_default_git_proto') ? g:vundle_default_git_proto : 'http' + let git_proto = exists('g:vundle_default_git_proto') ? g:vundle_default_git_proto : 'https' if arg =~? '^\s*\(gh\|github\):\S\+' \ || arg =~? '^[a-z0-9][a-z0-9-]*/[^/]\+$'