aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
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 /CONTRIBUTING.md
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 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 52ec52633..526031fe0 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -43,7 +43,6 @@ zimbu = {
location = 'parser', -- only needed if the parser is in subdirectory of a "monorepo"
generate = true, -- only needed if repo does not contain pre-generated src/parser.c
},
- maintainers = { '@me' }, -- the _query_ maintainers
tier = 1, -- stable: track versioned releases instead of latest commit
-- optional entries:
requires = { 'vim' }, -- if the queries inherit from another language
@@ -51,9 +50,6 @@ zimbu = {
}
```
->[!IMPORTANT]
-> The "maintainers" here refers to the person maintaining the **queries** in `nvim-treesitter`, not the parser maintainers (who likely don't use Neovim). The maintainers' duty is to review issues and PRs related to the query and to keep them updated with respect to parser changes.
-
2. If the parser name is not the same as the Vim filetype, add an entry to the `filetypes` table in `plugin/filetypes.lua`:
```lua