blob: 2064b8606e7bc30ad357823c3151d07da450d46a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
function! health#full_render#check()
call health#report_start("report 1")
call health#report_ok("life is fine")
call health#report_warn("no what installed", ["pip what", "make what"])
call health#report_start("report 2")
call health#report_info("stuff is stable")
call health#report_error("why no hardcopy", [":h :hardcopy", ":h :TOhtml"])
endfunction
|