blob: ef0c5ae3cdb2e8ce44176e30ac3369dc4a07b2cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
local M = {}
M.check = function()
vim.health.start('report 1')
vim.health.ok('everything is fine')
vim.health.start('report 2')
vim.health.ok('nothing to see here')
end
return M
|