Browse Source

message when nothing to clean

pull/25/merge
gmarik 15 years ago
parent
commit
e6897ca8c1
1 changed files with 12 additions and 9 deletions
  1. +12
    -9
      autoload/vundle/installer.vim

+ 12
- 9
autoload/vundle/installer.vim View File

@ -29,16 +29,19 @@ func! vundle#installer#clean(bang) abort
let bundle_dirs = map(copy(g:bundles), 'v:val.path()') let bundle_dirs = map(copy(g:bundles), 'v:val.path()')
let all_dirs = split(globpath(g:bundle_dir, '*'), "\n") let all_dirs = split(globpath(g:bundle_dir, '*'), "\n")
let x_dirs = filter(all_dirs, '0 > index(bundle_dirs, v:val)') let x_dirs = filter(all_dirs, '0 > index(bundle_dirs, v:val)')
if (!empty(x_dirs))
" TODO: improve message
if (a:bang || input('Are you sure you want to remove '.len(x_dirs).' bundles?') =~? 'y')
if has('win32') || has('win64')
exec '!rmdir /S /Q '.join(map(x_dirs, 'shellescape(v:val)'), ' ')
else
exec '!rm -rf '.join(map(x_dirs, 'shellescape(v:val)'), ' ')
endif
endif
if empty(x_dirs)
call s:log("All clean!")
return
end end
if (a:bang || input('Are you sure you want to remove '.len(x_dirs).' bundles?') =~? 'y')
if has('win32') || has('win64')
exec '!rmdir /S /Q '.join(map(x_dirs, 'shellescape(v:val)'), ' ')
else
exec '!rm -rf '.join(map(x_dirs, 'shellescape(v:val)'), ' ')
endif
endif
endf endf
func! s:reload_bundles() func! s:reload_bundles()


Loading…
Cancel
Save