mirror of
https://github.com/neovim/neovim.git
synced 2026-08-28 10:01:49 +00:00
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 ```
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user