health.lua 188 B

1234567891011
  1. local M = {}
  2. M.check = function()
  3. vim.health.start('report 1')
  4. vim.health.ok('everything is fine')
  5. vim.health.start('report 2')
  6. vim.health.ok('nothing to see here')
  7. end
  8. return M