aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/update-readme.lua
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2026-09-09 10:29:06 +0200
committerChristian Clason <ch.clason+github@icloud.com>2026-09-10 09:39:08 +0200
commitd4d59cb369da46b95699bd2200efbcffc6dadb3b (patch)
treef2b4053346ee6904c691f84981dd67a4fef882cd /scripts/update-readme.lua
parentfix(async): preserve wrapped function argument and return types (diff)
downloadnvim-treesitter-d4d59cb369da46b95699bd2200efbcffc6dadb3b.tar
nvim-treesitter-d4d59cb369da46b95699bd2200efbcffc6dadb3b.tar.gz
nvim-treesitter-d4d59cb369da46b95699bd2200efbcffc6dadb3b.tar.bz2
nvim-treesitter-d4d59cb369da46b95699bd2200efbcffc6dadb3b.tar.lz
nvim-treesitter-d4d59cb369da46b95699bd2200efbcffc6dadb3b.tar.xz
nvim-treesitter-d4d59cb369da46b95699bd2200efbcffc6dadb3b.tar.zst
nvim-treesitter-d4d59cb369da46b95699bd2200efbcffc6dadb3b.zip
docs: drop query maintainers
That list never really served its purpose, since most (non-obvious) maintainers stopped being responsive very quickly. Rather than constantly cleaning up the list, simply stop tracking them altogether.
Diffstat (limited to 'scripts/update-readme.lua')
-rwxr-xr-xscripts/update-readme.lua11
1 files changed, 3 insertions, 8 deletions
diff --git a/scripts/update-readme.lua b/scripts/update-readme.lua
index 90b962b5a..9cc058684 100755
--- a/scripts/update-readme.lua
+++ b/scripts/update-readme.lua
@@ -13,8 +13,8 @@ table.sort(sorted_parsers, function(a, b)
end)
local generated_text = [[
-Language | Tier | Queries | Maintainer
--------- |:----:|:-------:| ----------
+Language | Tier | Queries
+-------- |:----:|:-------:
]]
local footnotes = ''
@@ -53,12 +53,7 @@ for _, v in ipairs(sorted_parsers) do
.. (vim.uv.fs_stat('runtime/queries/' .. v.name .. '/indents.scm') and 'I' or ' ')
.. (vim.uv.fs_stat('runtime/queries/' .. v.name .. '/injections.scm') and 'J' or ' ')
.. (vim.uv.fs_stat('runtime/queries/' .. v.name .. '/locals.scm') and 'L' or ' ')
- .. '` | '
-
- -- Maintainer
- generated_text = generated_text
- .. (p.maintainers and table.concat(p.maintainers, ', ') or '')
- .. '\n'
+ .. '`\n'
end
generated_text = generated_text .. footnotes