mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-03 12:06:55 -04:00
fix(installer): don't update that are not installed (exclude global parsers)
This commit is contained in:
parent
1b3f93dcb9
commit
37767540e5
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ end
|
|||
---@return table
|
||||
local function outdated_parsers()
|
||||
return vim.tbl_filter(function(lang)
|
||||
return needs_update(lang)
|
||||
return is_installed(lang) and needs_update(lang)
|
||||
end, info.installed_parsers())
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue