From e5981b1048ac5d9447bcee02066260c336f4b160 Mon Sep 17 00:00:00 2001 From: gmarik Date: Sun, 10 Apr 2011 18:16:26 -0500 Subject: [PATCH] indent code --- autoload/vundle/installer.vim | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/autoload/vundle/installer.vim b/autoload/vundle/installer.vim index 194ed2b..23d0d55 100644 --- a/autoload/vundle/installer.vim +++ b/autoload/vundle/installer.vim @@ -8,7 +8,9 @@ func! vundle#installer#install(bang, ...) abort redraw! call vundle#config#require(bundles) - call s:log("Installed bundles:\n".join((empty(installed) ? ['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")) vundle#installer#helptags(bundles) endf @@ -48,8 +50,8 @@ endf func! s:has_doc(rtp) abort return isdirectory(a:rtp.'/doc') - \ && (!filereadable(a:rtp.'/doc/tags') || filewritable(a:rtp.'/doc/tags')) - \ && !(empty(glob(a:rtp.'/doc/*.txt')) && empty(glob(a:rtp.'/doc/*.??x'))) + \ && (!filereadable(a:rtp.'/doc/tags') || filewritable(a:rtp.'/doc/tags')) + \ && !(empty(glob(a:rtp.'/doc/*.txt')) && empty(glob(a:rtp.'/doc/*.??x'))) endf func! s:helptags(rtp) abort