aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/treesitter/health.lua
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/lua/vim/treesitter/health.lua
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/lua/vim/treesitter/health.lua')
-rw-r--r--runtime/lua/vim/treesitter/health.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/treesitter/health.lua b/runtime/lua/vim/treesitter/health.lua
index e031ba1bd6..53ccc6e88d 100644
--- a/runtime/lua/vim/treesitter/health.lua
+++ b/runtime/lua/vim/treesitter/health.lua
@@ -9,7 +9,7 @@ function M.list_parsers()
end
--- Performs a healthcheck for treesitter integration
-function M.check_health()
+function M.check()
local report_info = vim.fn['health#report_info']
local report_ok = vim.fn['health#report_ok']
local report_error = vim.fn['health#report_error']