From 5f9f5bc04d0bec0fbf100dd5a0de2b38daf882fb Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sat, 29 Mar 2025 13:35:06 -0700 Subject: fix(checkhealth): check g:loaded_xx_provider for all providers #33168 --- runtime/lua/vim/health/health.lua | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'runtime/lua/vim/health') diff --git a/runtime/lua/vim/health/health.lua b/runtime/lua/vim/health/health.lua index 38fcd64f88..dd6fe7f608 100644 --- a/runtime/lua/vim/health/health.lua +++ b/runtime/lua/vim/health/health.lua @@ -110,16 +110,6 @@ local function check_config() ) end - if vim.g.loaded_python3_provider == 1 then - ok = false - health.error( - '`g:loaded_python3_provider=1` may have been set by mistake. This option should not be used to load python provider in your config.', - { - 'Remove `vim.g.loaded_python3_provider=1` from your config.', - } - ) - end - local writeable = true local shadaopt = vim.fn.split(vim.o.shada, ',') local shadafile = ( -- cgit