Files
topgrade/src/steps/upgrade.vim

48 lines
713 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
if $TOPGRADE_FORCE_PLUGUPDATE
PlugUpdate!
else
PlugUpdate
endif
2020-06-28 08:33:40 +03:00
endif
if exists("*dein#update()")
echo "dein#update()"
call dein#update()
endif
if exists(":DeinUpdate")
echo "DeinUpdate"
DeinUpdate
endif
2021-02-23 09:21:58 +01:00
if exists(":PaqUpdate")
echo "PaqUpdate"
PaqUpdate
endif
2022-05-18 13:33:23 +02:00
if exists(":CocUpdateSync")
echo "CocUpdateSync"
CocUpdateSync
endif
2022-10-26 23:27:59 +02:00
if exists(':PackerSync')
echo "Packer"
autocmd User PackerComplete quitall
PackerSync
else
quitall
endif