mirror of
https://github.com/neovim/neovim.git
synced 2026-02-08 12:57:22 +00:00
To healthcheck the "foo" plugin:
:CheckHealth foo
To healthcheck the "foo" and "bar" plugins:
:CheckHealth foo bar
To run all auto-discovered healthchecks:
:CheckHealth
4 lines
70 B
VimL
4 lines
70 B
VimL
function! health#broken#check()
|
|
throw 'caused an error'
|
|
endfunction
|