Files
neovim/runtime/autoload/health/lsp.vim
Michael Lingelbach e26802650d feat(lsp): add lsp healthcheck
Add healthcheck for language server client, currently only checks
logging status.
2021-09-07 20:51:40 -07:00

6 lines
170 B
VimL

function! health#lsp#check() abort
call health#report_start('Checking language server client configuration')
lua require 'vim.lsp.health'.check_health()
endfunction