Fix neovim upgrade (#77)

This commit is contained in:
shura
2022-10-26 23:27:59 +02:00
committed by GitHub
parent 573bae7511
commit 31aae2198c
2 changed files with 32 additions and 20 deletions

View File

@@ -18,11 +18,6 @@ if exists(":PlugUpgrade")
endif
endif
if exists(":PackerUpdate")
echo "Packer"
PackerSync
endif
if exists("*dein#update()")
echo "dein#update()"
call dein#update()
@@ -43,4 +38,10 @@ if exists(":CocUpdateSync")
CocUpdateSync
endif
quitall
if exists(':PackerSync')
echo "Packer"
autocmd User PackerComplete quitall
PackerSync
else
quitall
endif