Files
topgrade/src/steps/upgrade.vim

33 lines
437 B
VimL
Raw Normal View History

2020-06-28 08:33:40 +03:00
if exists(":NeoBundleUpdate")
2020-09-06 18:44:03 +02:00
echo "NeoBundle"
2020-06-28 08:33:40 +03:00
NeoBundleUpdate
endif
if exists(":PluginUpdate")
echo "Plugin"
PluginUpdate
endif
if exists(":PlugUpgrade")
echo "Plug"
PlugUpgrade
PlugUpdate
endif
if exists(":PackerUpdate")
echo "Packer"
PackerSync
endif
if exists(":DeinUpdate")
echo "DeinUpdate"
DeinUpdate
endif
2021-02-23 09:21:58 +01:00
if exists(":PaqUpdate")
echo "PaqUpdate"
PaqUpdate
endif
quitall