diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2025-03-29 13:35:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-29 13:35:06 -0700 |
| commit | 5f9f5bc04d0bec0fbf100dd5a0de2b38daf882fb (patch) | |
| tree | 5224745ec8b131be3baff9c9d4938064945ac6a3 /runtime/lua/vim/health | |
| parent | b4906577c9f1f0a8bcfa096288d1a56630b142f3 (diff) | |
| download | rneovim-5f9f5bc04d0bec0fbf100dd5a0de2b38daf882fb.tar.gz rneovim-5f9f5bc04d0bec0fbf100dd5a0de2b38daf882fb.tar.bz2 rneovim-5f9f5bc04d0bec0fbf100dd5a0de2b38daf882fb.zip | |
fix(checkhealth): check g:loaded_xx_provider for all providers #33168
Diffstat (limited to 'runtime/lua/vim/health')
| -rw-r--r-- | runtime/lua/vim/health/health.lua | 10 |
1 files changed, 0 insertions, 10 deletions
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 = ( |