aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload
diff options
context:
space:
mode:
authorJavier Lopez <graulopezjavier@gmail.com>2021-10-05 07:05:33 -0500
committerGitHub <noreply@github.com>2021-10-05 05:05:33 -0700
commit0a7a215aa6bac6e5569d47a3ad5f496d64397f8e (patch)
tree7d1e6a5918e21f4a6e9745935f40ecb2e925c22e /runtime/autoload
parent6d8cafed40a308543a077dbe32d9fd030e69870d (diff)
downloadrneovim-0a7a215aa6bac6e5569d47a3ad5f496d64397f8e.tar.gz
rneovim-0a7a215aa6bac6e5569d47a3ad5f496d64397f8e.tar.bz2
rneovim-0a7a215aa6bac6e5569d47a3ad5f496d64397f8e.zip
fix(healthcheck): update builtins to the new convention #15914
Adjust some builtin healthchecks to use Lua, after #15259
Diffstat (limited to 'runtime/autoload')
-rw-r--r--runtime/autoload/health/lsp.vim5
-rw-r--r--runtime/autoload/health/treesitter.vim5
2 files changed, 0 insertions, 10 deletions
diff --git a/runtime/autoload/health/lsp.vim b/runtime/autoload/health/lsp.vim
deleted file mode 100644
index 2d2ba91cdf..0000000000
--- a/runtime/autoload/health/lsp.vim
+++ /dev/null
@@ -1,5 +0,0 @@
-function! health#lsp#check() abort
- call health#report_start('Checking language server client configuration')
- lua require 'vim.lsp.health'.check_health()
-endfunction
-
diff --git a/runtime/autoload/health/treesitter.vim b/runtime/autoload/health/treesitter.vim
deleted file mode 100644
index 5f167310ce..0000000000
--- a/runtime/autoload/health/treesitter.vim
+++ /dev/null
@@ -1,5 +0,0 @@
-function! health#treesitter#check() abort
- call health#report_start('Checking treesitter configuration')
- lua require 'vim.treesitter.health'.check_health()
-endfunction
-