mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-05 21:10:15 -04:00
health: add highlight to healthchecks
This commit is contained in:
parent
f8b39e1d3a
commit
4d4e7d8a8c
2 changed files with 18 additions and 0 deletions
|
|
@ -3,6 +3,7 @@ local fn = vim.fn
|
|||
|
||||
local queries = require'nvim-treesitter.query'
|
||||
local locals = require'nvim-treesitter.locals'
|
||||
local highlight = require'nvim-treesitter.highlight'
|
||||
local configs = require'nvim-treesitter.configs'
|
||||
|
||||
local health_start = vim.fn["health#report_start"]
|
||||
|
|
@ -51,6 +52,7 @@ function M.checkhealth()
|
|||
health_ok(parser_name .. " parser found.")
|
||||
|
||||
locals.checkhealth(parser_name)
|
||||
highlight.checkhealth(parser_name)
|
||||
elseif installed > 1 then
|
||||
health_warn(string.format("Multiple parsers found for %s, only %s will be used.", parser_name, installed[1]))
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue