Browse Source

do not break on helptag generation errors

- just show the message
- closes #46
pull/49/head
gmarik 15 years ago
parent
commit
06088de231
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      autoload/vundle/installer.vim

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

@ -58,7 +58,11 @@ func! s:has_doc(rtp) abort
endf
func! s:helptags(rtp) abort
helptags `=a:rtp.'/doc/'`
try
helptags `=a:rtp.'/doc/'`
catch
echohl Error | echo "Error generating helptags in ".a:rtp | echohl None
endtry
endf
func! s:sync(bang, bundle) abort


Loading…
Cancel
Save