diff options
author | dundargoc <gocdundar@gmail.com> | 2024-01-07 13:05:03 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-01-22 22:36:40 +0100 |
commit | eb5d15e3838f53e2fcd25989c88db87458e9f984 (patch) | |
tree | de13432021adb8632ed61cd9bbe4270eaec0674c /runtime/lua/nvim | |
parent | 13d50c3b13fb6f2bba948e50fefee451e0a90487 (diff) | |
download | rneovim-eb5d15e3838f53e2fcd25989c88db87458e9f984.tar.gz rneovim-eb5d15e3838f53e2fcd25989c88db87458e9f984.tar.bz2 rneovim-eb5d15e3838f53e2fcd25989c88db87458e9f984.zip |
refactor: rewrite python provider in lua
Diffstat (limited to 'runtime/lua/nvim')
-rw-r--r-- | runtime/lua/nvim/health.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/lua/nvim/health.lua b/runtime/lua/nvim/health.lua index 5a643db0ba..1a440c9827 100644 --- a/runtime/lua/nvim/health.lua +++ b/runtime/lua/nvim/health.lua @@ -183,10 +183,6 @@ local function check_rplugin_manifest() health.start('Remote Plugins') local existing_rplugins = {} - for _, item in ipairs(vim.fn['remote#host#PluginsForHost']('python')) do - existing_rplugins[item.path] = 'python' - end - for _, item in ipairs(vim.fn['remote#host#PluginsForHost']('python3')) do existing_rplugins[item.path] = 'python3' end |