Use a vim script to upgrade vim (#451)

This commit is contained in:
Roey Darwish Dror
2020-06-28 08:33:40 +03:00
committed by GitHub
parent 3b9d09c741
commit 5fb9b41771
4 changed files with 49 additions and 71 deletions

16
src/steps/upgrade.vim Normal file
View File

@@ -0,0 +1,16 @@
if exists(":NeoBundleUpdate")
echo NeoBundle
NeoBundleUpdate
endif
if exists(":PluginUpdate")
echo "Plugin"
PluginUpdate
endif
if exists(":PlugUpgrade")
echo "Plug"
PlugUpgrade
PlugClean
PlugUpdate
endif