Files
neovim/runtime/lua/vim/treesitter/health.lua
Lewis Russell ec8922978e feat(treesitter): add more metadata to language.inspect() (#32657)
Problem: No way to check the version of a treesitter parser.

Solution: Add version metadata (ABI 15 parsers only) as well as parser state count and supertype information (ABI 15) in `vim.treesitter.language.inspect()`. Also graduate the `abi_version` field, as this is now the official upstream name.

---------

Co-authored-by: Christian Clason <c.clason@uni-graz.at>
2025-03-01 15:51:09 +00:00

45 lines
1.1 KiB
Lua

local M = {}
local ts = vim.treesitter
local health = vim.health
--- Performs a healthcheck for treesitter integration
function M.check()
health.start('Treesitter features')
health.info(
string.format(
'Treesitter ABI support: min %d, max %d',
vim.treesitter.minimum_language_version,
ts.language_version
)
)
local can_wasm = vim._ts_add_language_from_wasm ~= nil
health.info(string.format('WASM parser support: %s', tostring(can_wasm)))
health.start('Treesitter parsers')
local parsers = vim.api.nvim_get_runtime_file('parser/*', true)
for _, parser in pairs(parsers) do
local parsername = vim.fn.fnamemodify(parser, ':t:r')
local is_loadable, err_or_nil = pcall(ts.language.add, parsername)
if not is_loadable then
health.error(
string.format(
'Parser "%s" failed to load (path: %s): %s',
parsername,
parser,
err_or_nil or '?'
)
)
else
local lang = ts.language.inspect(parsername)
health.ok(
string.format('Parser: %-20s ABI: %d, path: %s', parsername, lang.abi_version, parser)
)
end
end
end
return M