aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2024-11-02 10:40:44 +0100
committerChristian Clason <ch.clason+github@icloud.com>2024-11-02 23:51:00 +0100
commit2e3f1069f4991d80bb9fa8f712720fe7500bbd9b (patch)
tree1aee422ca7bdd5290d8edaf6ddf8862237e4d9c1
parentdb46b58569bc518967b73bf7d6ed92f8f5548c90 (diff)
downloadrneovim-2e3f1069f4991d80bb9fa8f712720fe7500bbd9b.tar.gz
rneovim-2e3f1069f4991d80bb9fa8f712720fe7500bbd9b.tar.bz2
rneovim-2e3f1069f4991d80bb9fa8f712720fe7500bbd9b.zip
fix(health): better layout of vim.treesitter health check
Problem: Long lists of available parsers make it hard to see WASM status. Solution: Add separate headings for "treesitter features" (ABI, WASM) and "treesitter parsers". Also add minimum supported ABI version.
-rw-r--r--runtime/lua/vim/treesitter/health.lua18
1 files changed, 13 insertions, 5 deletions
diff --git a/runtime/lua/vim/treesitter/health.lua b/runtime/lua/vim/treesitter/health.lua
index 637f9ea543..53b64d1dec 100644
--- a/runtime/lua/vim/treesitter/health.lua
+++ b/runtime/lua/vim/treesitter/health.lua
@@ -4,10 +4,21 @@ local health = vim.health
--- Performs a healthcheck for treesitter integration
function M.check()
- local parsers = vim.api.nvim_get_runtime_file('parser/*', true)
+ health.start('Treesitter features')
+
+ health.info(
+ string.format(
+ 'Treesitter ABI support: min %d, max %d',
+ vim.treesitter.minimum_language_version,
+ ts.language_version
+ )
+ )
- health.info(string.format('Nvim runtime ABI version: %d', 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)
@@ -28,9 +39,6 @@ function M.check()
)
end
end
-
- local can_wasm = vim._ts_add_language_from_wasm ~= nil
- health.info(string.format('Can load WASM parsers: %s', tostring(can_wasm)))
end
return M