mirror of
https://github.com/neovim/neovim.git
synced 2025-10-09 03:16:31 +00:00
6 lines
170 B
VimL
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
|
|
|