mirror of
https://github.com/neovim/neovim.git
synced 2025-09-10 13:28:19 +00:00

- 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.
11 lines
216 B
Lua
11 lines
216 B
Lua
local M = {}
|
|
|
|
M.check = function()
|
|
vim.health.report_start("report 1")
|
|
vim.health.report_ok("everything is fine")
|
|
vim.health.report_start("report 2")
|
|
vim.health.report_ok("nothing to see here")
|
|
end
|
|
|
|
return M
|