mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
fix(install): don't skip un-tiered parsers
This commit is contained in:
parent
c59004f1e0
commit
f9ab837ca1
1 changed files with 1 additions and 1 deletions
|
|
@ -144,7 +144,7 @@ function M.norm_languages(languages, skip)
|
|||
languages = vim.tbl_filter(
|
||||
--- @param v string
|
||||
function(v)
|
||||
return parsers[v].tier < 4
|
||||
return not (parsers[v].tier and parsers[v].tier == 4)
|
||||
end,
|
||||
languages
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue