Files
topgrade/src/steps/upgrade.vim
2020-08-15 13:23:56 +03:00

24 lines
314 B
VimL

if exists(":NeoBundleUpdate")
echo NeoBundle
NeoBundleUpdate
endif
if exists(":PluginUpdate")
echo "Plugin"
PluginUpdate
endif
if exists(":PlugUpgrade")
echo "Plug"
PlugUpgrade
PlugClean
PlugUpdate
endif
if exists(":PackerUpdate")
echo "Packer"
PackerSync
endif
quitall