neovim/runtime/lua/vim/treesitter/health.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1017 B
Lua
Raw Normal View History

2021-03-23 15:32:45 -07:00
local M = {}
local ts = vim.treesitter
local health = require('vim.health')
2021-03-23 15:32:45 -07:00
--- Lists the parsers currently installed
---
---@return string[] list of parser files
2021-03-23 15:32:45 -07:00
function M.list_parsers()
return vim.api.nvim_get_runtime_file('parser/*', true)
end
--- Performs a healthcheck for treesitter integration
function M.check()
2021-03-23 15:32:45 -07:00
local parsers = M.list_parsers()
health.report_info(string.format('Nvim runtime ABI version: %d', ts.language_version))
2021-03-23 15:32:45 -07:00
for _, parser in pairs(parsers) do
local parsername = vim.fn.fnamemodify(parser, ':t:r')
local is_loadable, ret = pcall(ts.language.require_language, parsername)
if not is_loadable or not ret then
health.report_error(string.format('Parser "%s" failed to load (path: %s): %s', parsername, parser, ret or '?'))
2021-03-23 15:32:45 -07:00
elseif ret then
local lang = ts.language.inspect_language(parsername)
health.report_ok(
string.format('Parser: %-10s ABI: %d, path: %s', parsername, lang._abi_version, parser)
)
2021-03-23 15:32:45 -07:00
end
end
end
return M