From 0a7a215aa6bac6e5569d47a3ad5f496d64397f8e Mon Sep 17 00:00:00 2001 From: Javier Lopez Date: Tue, 5 Oct 2021 07:05:33 -0500 Subject: fix(healthcheck): update builtins to the new convention #15914 Adjust some builtin healthchecks to use Lua, after #15259 --- runtime/lua/vim/treesitter/health.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/lua/vim/treesitter') 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'] -- cgit