use empty() where possible

This commit is contained in:
gmarik 2011-03-28 13:05:26 -05:00
parent a3c4221763
commit 0852047c90

View File

@ -8,10 +8,10 @@ func! vundle#installer#install(bang, ...)
redraw! redraw!
call vundle#config#require(bundles) call vundle#config#require(bundles)
call s:log("Installed bundles:\n".join((len(installed) == 0 ? ['no new bundless installed'] : map(installed, 'v:val.name')),"\n")) call s:log("Installed bundles:\n".join((empty(installed) ? ['no new bundless installed'] : map(installed, 'v:val.name')),"\n"))
let help_dirs = vundle#installer#helptags(bundles) let help_dirs = vundle#installer#helptags(bundles)
if len(help_dirs) > 0 if !empty(help_dirs)
call s:log('Helptags: done. '.len(help_dirs).' bundles processed') call s:log('Helptags: done. '.len(help_dirs).' bundles processed')
endif endif
endf endf
@ -45,7 +45,7 @@ endf
func! s:has_doc(rtp) func! s:has_doc(rtp)
return isdirectory(a:rtp.'/doc') return isdirectory(a:rtp.'/doc')
\ && (!filereadable(a:rtp.'/doc/tags') || filewritable(a:rtp.'/doc/tags')) \ && (!filereadable(a:rtp.'/doc/tags') || filewritable(a:rtp.'/doc/tags'))
\ && (len(glob(a:rtp.'/doc/*.txt')) > 0 || len(glob(a:rtp.'/doc/*.??x')) > 0) \ && !(empty(glob(a:rtp.'/doc/*.txt')) && empty(glob(a:rtp.'/doc/*.??x')))
endf endf
func! s:helptags(rtp) func! s:helptags(rtp)