mirror of
https://github.com/neovim/neovim.git
synced 2026-01-06 19:39:53 +10:00
fix(healthcheck): update builtins to the new convention #15914
Adjust some builtin healthchecks to use Lua, after #15259
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
local M = {}
|
||||
|
||||
--- Performs a healthcheck for LSP
|
||||
function M.check_health()
|
||||
function M.check()
|
||||
local report_info = vim.fn['health#report_info']
|
||||
local report_warn = vim.fn['health#report_warn']
|
||||
|
||||
|
||||
@@ -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']
|
||||
|
||||
Reference in New Issue
Block a user