1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 15:30:09 +00:00

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"
}