mirror of
https://github.com/neovim/neovim.git
synced 2024-12-28 14:31:13 -07:00
7 lines
217 B
VimL
7 lines
217 B
VimL
|
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
|