mirror of
https://github.com/neovim/neovim.git
synced 2024-12-21 19:55:04 -07:00
24 lines
388 B
Lua
24 lines
388 B
Lua
|
local M = {}
|
||
|
|
||
|
function M.report_start(msg)
|
||
|
vim.fn['health#report_start'](msg)
|
||
|
end
|
||
|
|
||
|
function M.report_info(msg)
|
||
|
vim.fn['health#report_info'](msg)
|
||
|
end
|
||
|
|
||
|
function M.report_ok(msg)
|
||
|
vim.fn['health#report_ok'](msg)
|
||
|
end
|
||
|
|
||
|
function M.report_warn(msg, ...)
|
||
|
vim.fn['health#report_warn'](msg, ...)
|
||
|
end
|
||
|
|
||
|
function M.report_error(msg, ...)
|
||
|
vim.fn['health#report_error'](msg, ...)
|
||
|
end
|
||
|
|
||
|
return M
|