health.lua 388 B

123456789101112131415161718192021222324
  1. local M = {}
  2. function M.report_start(msg)
  3. vim.fn['health#report_start'](msg)
  4. end
  5. function M.report_info(msg)
  6. vim.fn['health#report_info'](msg)
  7. end
  8. function M.report_ok(msg)
  9. vim.fn['health#report_ok'](msg)
  10. end
  11. function M.report_warn(msg, ...)
  12. vim.fn['health#report_warn'](msg, ...)
  13. end
  14. function M.report_error(msg, ...)
  15. vim.fn['health#report_error'](msg, ...)
  16. end
  17. return M