diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-09-07 21:16:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 21:16:19 -0700 |
commit | 257e8a74317b966f3239746f977d09747a6948d8 (patch) | |
tree | ce2d6a21abbe7b078f7f69bd95204c518d9ec383 /runtime/autoload | |
parent | 47f99d66440ae8be26b34531989ac61edc1ad9fe (diff) | |
parent | e6777a7a04cf84517c8f1345fcb58c343171a266 (diff) | |
download | rneovim-257e8a74317b966f3239746f977d09747a6948d8.tar.gz rneovim-257e8a74317b966f3239746f977d09747a6948d8.tar.bz2 rneovim-257e8a74317b966f3239746f977d09747a6948d8.zip |
Merge pull request #15595 from mjlbach/feat/add-healthcheck-lsp
* feat(lsp): add lsp healthcheck
* feat(lsp): add warning message for large log size
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/health/lsp.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/autoload/health/lsp.vim b/runtime/autoload/health/lsp.vim new file mode 100644 index 0000000000..2d2ba91cdf --- /dev/null +++ b/runtime/autoload/health/lsp.vim @@ -0,0 +1,5 @@ +function! health#lsp#check() abort + call health#report_start('Checking language server client configuration') + lua require 'vim.lsp.health'.check_health() +endfunction + |