Merge pull request #1711 from bertabus/master

Vundle clean function
This commit is contained in:
Robby Russell 2013-04-11 14:56:36 -07:00
commit 2a0c1d7b92

View File

@ -16,8 +16,12 @@ function vundle () {
vim -c "execute \"BundleInstall\" | q | q"
}
function vundle-update () {
vundle-init
vim -c "execute \"BundleInstall!\" | q | q"
}
function vundle-clean () {
vundle-init
vim -c "execute \"BundleClean!\" | q | q"
}