Files
neovim/test/functional/fixtures/autoload/health/broken.vim
Justin M. Keyes ed49d9d866 CheckHealth: Accept [plugin1 [, plugin2 [, ...]]] args.
To healthcheck the "foo" plugin:
    :CheckHealth foo
To healthcheck the "foo" and "bar" plugins:
    :CheckHealth foo bar
To run all auto-discovered healthchecks:
    :CheckHealth
2016-08-21 22:03:28 -04:00

4 lines
70 B
VimL

function! health#broken#check()
throw 'caused an error'
endfunction