aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/check-parsers.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/check-parsers.lua')
-rwxr-xr-xscripts/check-parsers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-parsers.lua b/scripts/check-parsers.lua
index 152c8f7ea..c2eefd7c9 100755
--- a/scripts/check-parsers.lua
+++ b/scripts/check-parsers.lua
@@ -3,7 +3,7 @@ vim.opt.runtimepath:append('.')
local configs = require('nvim-treesitter.parsers')
local parsers = #_G.arg > 0 and { unpack(_G.arg) }
- or require('nvim-treesitter.config').installed_languages('parsers')
+ or require('nvim-treesitter.config').get_installed('parsers')
local data = {} ---@type table[]
local errors = {} ---@type string[]