summaryrefslogtreecommitdiffstatshomepage
path: root/test/functional/fixtures/lua/test_plug/submodule
AgeCommit message (Collapse)AuthorFiles
2023-04-15refactor: deprecate checkhealth functionsdundargoc1
The following functions are deprecated and will be removed in Nvim v0.11: - health#report_start() - health#report_info() - health#report_ok() - health#report_warn() - health#report_error() - vim.health.report_start() - vim.health.report_info() - vim.health.report_ok() - vim.health.report_warn() - vim.health.report_error() Users should instead use these: - vim.health.start() - vim.health.info() - vim.health.ok() - vim.health.warn() - vim.health.error()
2022-05-31refactor(checkhealth)!: rename to vim.health, move logic to Lua #18720Javier Lopez1
- 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.
2021-10-04test(runtime/health): cover lua healthchecksJavier López1
- Add tests for lua healthchecks (failure, success and submodules). - Reword some of the test naming for improved logs readability. - Modify render test to accomodate the changes of the health autoload function. - Add test for :checkhealth completion of Lua healtchecks.