mirror of
https://github.com/neovim/neovim.git
synced 2024-12-28 14:31:13 -07:00
ed49d9d866
To healthcheck the "foo" plugin: :CheckHealth foo To healthcheck the "foo" and "bar" plugins: :CheckHealth foo bar To run all auto-discovered healthchecks: :CheckHealth
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
|