From e6652821bd32e4ff8d62a0b67fc2041a5f41e252 Mon Sep 17 00:00:00 2001 From: Javier Lopez Date: Tue, 31 May 2022 13:10:18 -0500 Subject: 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. --- runtime/lua/vim/_editor.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime/lua/vim/_editor.lua') diff --git a/runtime/lua/vim/_editor.lua b/runtime/lua/vim/_editor.lua index e6ab48f30d..c8a0aa8260 100644 --- a/runtime/lua/vim/_editor.lua +++ b/runtime/lua/vim/_editor.lua @@ -49,6 +49,7 @@ for k, v in pairs({ diagnostic = true, keymap = true, ui = true, + health = true, }) do vim._submodules[k] = v end -- cgit