aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/health.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/nvim-treesitter/health.lua b/lua/nvim-treesitter/health.lua
index 856e2183e..3da7f5415 100644
--- a/lua/nvim-treesitter/health.lua
+++ b/lua/nvim-treesitter/health.lua
@@ -54,14 +54,14 @@ local function install_health()
local ts = check_exe('tree-sitter')
if ts then
if vim.version.ge(ts.version, TREE_SITTER_MIN_VER) then
- health.ok(string.format('tree-sitter %s (%s)', ts.version, ts.path))
+ health.ok(string.format('tree-sitter-cli %s (%s)', ts.version, ts.path))
else
health.error(
- string.format('tree-sitter CLI v%d.%d.%d is required', unpack(TREE_SITTER_MIN_VER))
+ string.format('tree-sitter-cli v%d.%d.%d is required', unpack(TREE_SITTER_MIN_VER))
)
end
else
- health.error('tree-sitter CLI not found')
+ health.error('tree-sitter-cli not found')
end
end