From 01b4da65c229f05ccb26c55db4e0d30ed9bac10b Mon Sep 17 00:00:00 2001 From: dundargoc Date: Wed, 22 May 2024 20:40:20 +0200 Subject: fix: merge all provider healthchecks into a single health.lua This will help manage the overly granular checkhealth completion to go from ``` vim.health vim.lsp vim.provider.clipboard vim.provider.node vim.provider.perl vim.provider.python vim.provider.ruby vim.treesitter ``` to ``` vim.health vim.lsp vim.provider vim.treesitter ``` --- test/functional/plugin/health_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional/plugin') diff --git a/test/functional/plugin/health_spec.lua b/test/functional/plugin/health_spec.lua index 327b5759c7..7aa5c99a60 100644 --- a/test/functional/plugin/health_spec.lua +++ b/test/functional/plugin/health_spec.lua @@ -43,7 +43,7 @@ describe(':checkhealth', function() it('completions can be listed via getcompletion()', function() clear() eq('vim.health', getcompletion('vim', 'checkhealth')[1]) - eq('vim.provider.clipboard', getcompletion('vim.prov', 'checkhealth')[1]) + eq('vim.provider', getcompletion('vim.prov', 'checkhealth')[1]) eq('vim.lsp', getcompletion('vim.ls', 'checkhealth')[1]) end) -- cgit