aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2024-03-24 10:30:37 +0100
committerChristian Clason <c.clason@uni-graz.at>2025-05-12 18:43:40 +0200
commita8f5641ab3c8fbdfd1e454821ab34fc7db2c2651 (patch)
tree4579c45cb40cc6f13b0901aa1c7c1277d106207b /CONTRIBUTING.md
parentdoc: better clarification of highlights/injections (diff)
downloadnvim-treesitter-a8f5641ab3c8fbdfd1e454821ab34fc7db2c2651.tar
nvim-treesitter-a8f5641ab3c8fbdfd1e454821ab34fc7db2c2651.tar.gz
nvim-treesitter-a8f5641ab3c8fbdfd1e454821ab34fc7db2c2651.tar.bz2
nvim-treesitter-a8f5641ab3c8fbdfd1e454821ab34fc7db2c2651.tar.lz
nvim-treesitter-a8f5641ab3c8fbdfd1e454821ab34fc7db2c2651.tar.xz
nvim-treesitter-a8f5641ab3c8fbdfd1e454821ab34fc7db2c2651.tar.zst
nvim-treesitter-a8f5641ab3c8fbdfd1e454821ab34fc7db2c2651.zip
feat(install)!: remove support for C++ scanners
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 55c0bc284..c989b585c 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -19,7 +19,7 @@ To add a new parser, edit the following files:
zimbu = {
install_info = {
url = 'https://github.com/zimbulang/tree-sitter-zimbu', -- local path or git repo
- files = { 'src/parser.c' }, -- note that some parsers also require src/scanner.c or src/scanner.cc
+ files = { 'src/parser.c' }, -- note that some parsers also require src/scanner.c
-- optional entries:
branch = 'develop', -- only needed if different from default branch
location = 'parser', -- only needed if the parser is in subdirectory of a "monorepo"
@@ -51,7 +51,7 @@ zimbu = {
zimbu = { 'zu' },
```
-**Note: We only support external scanners written in C (preferably) and C++03 for portability reasons.**
+**Note: We only support external scanners written in C for portability reasons.**
## Queries