aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2025-05-18 10:37:50 +0200
committerChristian Clason <ch.clason+github@icloud.com>2025-05-21 09:15:29 +0200
commitb19b5ce17195f830fd2474c625e242cfc3aa5f90 (patch)
tree584db0f3c28c769ee715e28a9673755fa40c79a3 /CONTRIBUTING.md
parentfeat(parsers): update markdown_inline, markdown, vimdoc, fsharp, pascal, rack... (diff)
downloadnvim-treesitter-b19b5ce17195f830fd2474c625e242cfc3aa5f90.tar
nvim-treesitter-b19b5ce17195f830fd2474c625e242cfc3aa5f90.tar.gz
nvim-treesitter-b19b5ce17195f830fd2474c625e242cfc3aa5f90.tar.bz2
nvim-treesitter-b19b5ce17195f830fd2474c625e242cfc3aa5f90.tar.lz
nvim-treesitter-b19b5ce17195f830fd2474c625e242cfc3aa5f90.tar.xz
nvim-treesitter-b19b5ce17195f830fd2474c625e242cfc3aa5f90.tar.zst
nvim-treesitter-b19b5ce17195f830fd2474c625e242cfc3aa5f90.zip
docs: final update after rewrite
Make clear this is not the default branch
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 983499e81..f665ce1ed 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -22,15 +22,15 @@ To add a new parser, edit the following files:
zimbu = {
install_info = {
url = 'https://github.com/zimbulang/tree-sitter-zimbu', -- git repo; use `path` for local path
- revision = 'v2.1', -- tag or commit hash, will be updated automatically
+ revision = 'v2.1', -- tag or commit hash
-- optional entries:
branch = 'develop', -- only needed if different from default branch
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
- generate_from_json = true, -- only needed if grammar.js has npm-installed dependencies
+ generate_from_json = false, -- only needed if repo does not contain `src/grammar.json` either
},
maintainers = { '@me' }, -- the _query_ maintainers
- tier = 1, -- stable: track versioned releases
+ tier = 1, -- stable: track versioned releases instead of latest commit
-- optional entries:
requires = { 'vim' }, -- if the queries inherit from another language
readme_note = "an example language",