From 95fa31d35297abecf8a835eef5ef534b97b7bd68 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 14 Jul 2024 15:32:07 -0500 Subject: [PATCH] test(refactor): remove invalid test plugins - `popup.nvim` is not referenced anywhere within the plugin and as such should be removed. - `playground` is not needed either, it's not referenced and secondly the most important feature from it (:TSPlayground) is covered by Neovim's :InspectTree command in more recent versions of Neovim. Closes #203 (https://github.com/windwp/nvim-ts-autotag/issues/203) --- tests/minimal_init.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/minimal_init.lua b/tests/minimal_init.lua index 1c9701d..b7d0611 100644 --- a/tests/minimal_init.lua +++ b/tests/minimal_init.lua @@ -138,7 +138,5 @@ end M.setup({ ["plenary.nvim"] = "https://github.com/nvim-lua/plenary.nvim", - ["popup.nvim"] = "https://github.com/nvim-lua/popup.nvim", ["nvim-treesitter"] = "https://github.com/nvim-treesitter/nvim-treesitter", - ["playground"] = "https://github.com/nvim-treesitter/playground", })