Commit c50b9a24 authored by bertabus's avatar bertabus
Browse files

Added Vundle clean to remove bundles removed from vimrc

parent 0198a129
...@@ -16,8 +16,12 @@ function vundle () { ...@@ -16,8 +16,12 @@ function vundle () {
vim -c "execute \"BundleInstall\" | q | q" vim -c "execute \"BundleInstall\" | q | q"
} }
function vundle-update () { function vundle-update () {
vundle-init vundle-init
vim -c "execute \"BundleInstall!\" | q | q" vim -c "execute \"BundleInstall!\" | q | q"
} }
function vundle-clean () {
vundle-init
vim -c "execute \"BundleClean!\" | q | q"
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment