Browse Source

display Bundle's spec instead just name

- disambiguation
- also adds support for revision numbers
v
gmarik 15 years ago
parent
commit
0925acd822
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      autoload/vundle/config.vim
  2. +1
    -1
      autoload/vundle/installer.vim

+ 1
- 1
autoload/vundle/config.vim View File

@ -39,7 +39,7 @@ endf
func! s:parse_name(arg) func! s:parse_name(arg)
let args = split(a:arg, '\s\+') let args = split(a:arg, '\s\+')
let arg = args[0] let arg = args[0]
let opts = {}
let opts = {'spec': a:arg}
if len(args) == 2 if len(args) == 2
let revision = args[1] let revision = args[1]


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

@ -11,7 +11,7 @@ func! vundle#installer#install(bang, ...) abort
let msg = 'No new bundles were installed' let msg = 'No new bundles were installed'
if (!empty(installed)) if (!empty(installed))
let msg = "Installed bundles:\n".join(map(installed, 'v:val.name'),"\n")
let msg = "Installed bundles:\n".join(map(installed, 'v:val.spec'),"\n")
endif endif
call s:log(msg) call s:log(msg)


Loading…
Cancel
Save