The project https://github.com/wsdjeg/dein-ui.vim provides a userfriendly alternative to the `call dein#upgrade` call of the dein plugin manager. If this command is available, we should run it
28 lines
371 B
VimL
28 lines
371 B
VimL
if exists(":NeoBundleUpdate")
|
|
echo "NeoBundle"
|
|
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
|
|
|
|
quitall
|