From 547df8d346e8a7689213299f6fbb1d5807988b44 Mon Sep 17 00:00:00 2001 From: Funky185540 Date: Sun, 13 Feb 2022 07:08:36 +0100 Subject: [PATCH] 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. --- src/steps/upgrade.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/steps/upgrade.vim b/src/steps/upgrade.vim index 3eb89d54..881dea94 100644 --- a/src/steps/upgrade.vim +++ b/src/steps/upgrade.vim @@ -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