Skip to content

Commit

Permalink
support file:// scheme and repo/.git path
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarik committed Apr 3, 2011
1 parent c2a7b49 commit 9dcdbf1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions autoload/vundle/config.vim
Expand Up @@ -45,11 +45,10 @@ func! s:parse_name(arg)
let uri = 'https://github.com/'.split(arg, ':')[-1]
let name = substitute(split(uri,'\/')[-1], '\.git\s*$','','i')
elseif arg =~ '^\s*\(git@\|git://\)\S\+'
\ || arg =~ 'https\?://'
\ || arg =~ '(file|https\?)://'
\ || arg =~ '\.git\s*$'
\ || arg =~ '\(file://\)\?[~/]'
let uri = arg
let name = substitute(split(uri,'\/')[-1], '\.git\s*$','','i')
let name = split( substitute(uri,'/\?\.git\s*$','','i') ,'\/')[-1]
else
let name = arg
let uri = 'https://github.com/vim-scripts/'.name.'.git'
Expand Down

0 comments on commit 9dcdbf1

Please sign in to comment.