From 2567ebaee43c33311027d103e4663e2564fa62ba Mon Sep 17 00:00:00 2001 From: Akianonymus Date: Mon, 19 Jul 2021 12:42:21 +0530 Subject: [PATCH] telescope: Fix a bug introduced in 0023233 PackerCompile at the same time conflicts with packer sync because packer always runs in bg --- lua/plugins/telescope.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index 0923c8c..26f97e7 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -77,7 +77,7 @@ if then -- This should only trigger when in need of PackerSync, so better do it print("After completion of PackerSync, restart neovim.") + -- Trigger packer compile on PackerComplete, so it properly waits for PackerSync + vim.cmd 'autocmd User PackerComplete ++once lua require("packer").compile()' require("packer").sync("telescope-fzf-native.nvim", "telescope-media-files.nvim") - -- why compile too ? well, packer is supposed to compile with sync only, but sometimes it doesn't work - vim.cmd("PackerCompile") end