Commit 2a0c1d7b authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #1711 from bertabus/master

Vundle clean function
parents 0198a129 c50b9a24
...@@ -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