aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2025-02-09 13:19:34 +0100
committerChristian Clason <c.clason@uni-graz.at>2025-05-12 18:43:40 +0200
commita9f34d5a768b2afcece98ba31345602a71f42fcb (patch)
tree33a0d3d3868966729792ca28074c292713d83b7b /scripts
parentfix(ci): update to changed neovim release name (diff)
downloadnvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.gz
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.bz2
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.lz
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.xz
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.tar.zst
nvim-treesitter-a9f34d5a768b2afcece98ba31345602a71f42fcb.zip
feat(parsers): rework tiers
* stable: updates follow semver releases (todo) * unstable: updates follow HEAD (default) * unmaintained: no automatic updates * unsupported: no updates, cannot be installed
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update-parsers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update-parsers.lua b/scripts/update-parsers.lua
index ec1308d77..83f54e9da 100755
--- a/scripts/update-parsers.lua
+++ b/scripts/update-parsers.lua
@@ -8,7 +8,7 @@ local updates = {} ---@type string[]
-- check for new revisions
for k, p in pairs(parsers) do
- if p.tier < 5 and p.install_info then
+ if p.tier <= 2 and p.install_info then
print('Updating ' .. k)
jobs[k] = vim.system({ 'git', 'ls-remote', p.install_info.url })
end