vim: Support updating dein (#857)

`dein` is a plugin manager for vim, which was supported for a while in
an earlier version of topgrade. This patch reintroduces support for
upgrading "plain" `dein`, rather that the `dein` UI which is invoked by
`DeinUpdate` in vim.
This commit is contained in:
Funky185540 2022-02-13 07:08:36 +01:00 committed by GitHub
parent 4230388017
commit 547df8d346
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,11 @@ if exists(":PackerUpdate")
PackerSync
endif
if exists("*dein#update()")
echo "dein#update()"
call dein#update()
endif
if exists(":DeinUpdate")
echo "DeinUpdate"
DeinUpdate