Browse Source

fix BundleClean

pull/75/head
gmarik 15 years ago
parent
commit
1adcfc5154
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      autoload/vundle/installer.vim

+ 4
- 3
autoload/vundle/installer.vim View File

@ -96,12 +96,13 @@ func! vundle#installer#clean(bang) abort
return
end
call vundle#scripts#view('clean', ['"Remove those bundles?'], map(copy(x_dirs), 'fnamemodify(v:val, ":t")'))
let names = map(copy(x_dirs), 'fnamemodify(v:val, ":t")')
call vundle#scripts#view('clean', ['"Remove those bundles?'], names)
redraw!
if (a:bang || input('Are you sure you want to remove '.len(x_dirs).' bundles? [ y/n ]:') =~? 'y')
if (a:bang || input('Are you sure you want to remove '.len(names).' bundles? [ y/n ]:') =~? 'y')
call s:process(a:bang, 'vundle#installer#delete', x_dirs)
call s:process(a:bang, 'vundle#installer#delete', names)
echo 'Done!'
endif


Loading…
Cancel
Save