diff options
author | Javier Lopez <graulopezjavier@gmail.com> | 2022-05-31 13:10:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-31 11:10:18 -0700 |
commit | e6652821bd32e4ff8d62a0b67fc2041a5f41e252 (patch) | |
tree | cc5106c44d65f8f504a4f3ba6654b918a6f33c13 /runtime/lua/health.lua | |
parent | 7380ebfc17723662f6fe1e38372f54b3d67fe082 (diff) | |
download | rneovim-e6652821bd32e4ff8d62a0b67fc2041a5f41e252.tar.gz rneovim-e6652821bd32e4ff8d62a0b67fc2041a5f41e252.tar.bz2 rneovim-e6652821bd32e4ff8d62a0b67fc2041a5f41e252.zip |
refactor(checkhealth)!: rename to vim.health, move logic to Lua #18720
- Complete function:
There was lots of unnecessary C code for the complete function, therefore
moving it to Lua and use all the plumbing we have in place to retrieve the
results.
- Moving the module:
It's important we keep nvim lua modules name spaced, avoids conflict with
plugins, luarocks, etc.
Diffstat (limited to 'runtime/lua/health.lua')
-rw-r--r-- | runtime/lua/health.lua | 29 |
1 files changed, 6 insertions, 23 deletions
diff --git a/runtime/lua/health.lua b/runtime/lua/health.lua index 142a353bf2..40e2b3c3e7 100644 --- a/runtime/lua/health.lua +++ b/runtime/lua/health.lua @@ -1,23 +1,6 @@ -local M = {} - -function M.report_start(msg) - vim.fn['health#report_start'](msg) -end - -function M.report_info(msg) - vim.fn['health#report_info'](msg) -end - -function M.report_ok(msg) - vim.fn['health#report_ok'](msg) -end - -function M.report_warn(msg, ...) - vim.fn['health#report_warn'](msg, ...) -end - -function M.report_error(msg, ...) - vim.fn['health#report_error'](msg, ...) -end - -return M +return setmetatable({}, { + __index = function(_, k) + vim.deprecate("require('health')", 'vim.health', '0.9', false) + return vim.health[k] + end, +}) |