aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/health.lua2
-rw-r--r--lua/nvim-treesitter/highlight.lua16
2 files changed, 18 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/health.lua b/lua/nvim-treesitter/health.lua
index 563e46a90..862161871 100644
--- a/lua/nvim-treesitter/health.lua
+++ b/lua/nvim-treesitter/health.lua
@@ -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
diff --git a/lua/nvim-treesitter/highlight.lua b/lua/nvim-treesitter/highlight.lua
index 65ab48dcb..04f21eb1e 100644
--- a/lua/nvim-treesitter/highlight.lua
+++ b/lua/nvim-treesitter/highlight.lua
@@ -25,4 +25,20 @@ function M.detach(bufnr)
api.nvim_buf_set_option(buf, 'syntax', 'on')
end
+function M.checkhealth(lang)
+ local health_start = vim.fn["health#report_start"]
+ local health_ok = vim.fn['health#report_ok']
+ local health_info = vim.fn['health#report_info']
+ local health_warn = vim.fn['health#report_warn']
+ local health_error = vim.fn['health#report_error']
+
+ if not queries.get_query(lang, "highlights") then
+ health_warn("No `highlights.scm` query found for " .. lang, {
+ "Open an issue at https://github.com/nvim-treesitter/nvim-treesitter"
+ })
+ else
+ health_ok("`highlights.scm` found.")
+ end
+end
+
return M