From be16d1bbe77d1c3f68077b94b67e7af420da9247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Wei=C3=9Fmann?= Date: Wed, 11 Nov 2020 11:02:37 +0100 Subject: [PATCH] Vim update: call DeinUpdate if available (#559) 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 --- src/steps/upgrade.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/steps/upgrade.vim b/src/steps/upgrade.vim index bd47d488..3c0d1dde 100644 --- a/src/steps/upgrade.vim +++ b/src/steps/upgrade.vim @@ -19,4 +19,9 @@ if exists(":PackerUpdate") PackerSync endif +if exists(":DeinUpdate") + echo "DeinUpdate" + DeinUpdate +endif + quitall