blob: a3603474554060820ca497f63b770a51d7792bcb (
plain) (
blame)
1
2
3
4
5
6
|
function! health#success1#check()
call health#report_start("report 1")
call health#report_ok("everything is fine")
call health#report_start("report 2")
call health#report_ok("nothing to see here")
endfunction
|