Browse Source

display bundle per line

pull/10/head
gmarik 15 years ago
parent
commit
9147f84f85
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/installer.vim

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

@ -8,7 +8,7 @@ func! vundle#installer#install(bang, ...)
redraw!
call vundle#config#require(bundles)
call s:log('Installed bundles: '.join((len(installed) == 0 ? ['no new bundless installed'] : map(installed, 'v:val.name')),','))
call s:log("Installed bundles:\n".join((len(installed) == 0 ? ['no new bundless installed'] : map(installed, 'v:val.name')),"\n"))
let help_dirs = vundle#installer#helptags(bundles)
if len(help_dirs) > 0


Loading…
Cancel
Save