An incremental parsing system for programming tools https://tree-sitter.github.io
Find a file
Max Brunsfeld d3c84e5bd3
Merge pull request #2751 from stackmystack/doc-correction
doc: fix multi-language program typo
2023-11-06 10:43:08 -08:00
.github cicd: disable failed linux-riscv64gc target 2023-10-16 16:13:40 +03:00
cli Fix formatting 2023-10-25 10:24:35 +03:00
docs doc: fix multi-language program typo 2023-11-06 13:18:09 +01:00
highlight chore(rust): make Query extra predicates state fully immutable 2023-09-02 23:12:28 +03:00
lib Use single if block 2023-10-25 10:47:55 +03:00
script chore: switch fetch-fixtures.cmd to all master branches 2023-09-21 11:28:22 +03:00
tags chore(rust): make Query extra predicates state fully immutable 2023-09-02 23:12:28 +03:00
test chore: fix local fixture test for C language 2023-10-16 21:45:40 +03:00
.gitattributes Exclude huge generated files from git diff output 2023-01-14 08:58:25 +02:00
.gitignore fix: make install should install files with default perms 2023-08-21 06:19:49 +03:00
build.zig Updated build.zig to work with 0.11.0 2023-08-25 19:18:46 +03:00
Cargo.lock chore(rust): improve perf for position funcs 2023-10-05 17:24:01 +03:00
Cargo.toml perf: cache the current language configuration to lookup later on 2023-09-21 00:52:50 -04:00
CONTRIBUTING.md Tweak readmes 2020-05-12 16:16:48 -07:00
LICENSE chore: fix years in the license file 2023-04-16 23:39:08 +03:00
Makefile fix: makefile should install only api.h header 2023-08-26 20:51:52 +03:00
Package.swift Added Swift Package Manager entry point. 2023-07-12 11:37:04 -04:00
README.md docs: update badges; fix markdown lint complains 2023-04-16 23:39:08 +03:00
tree-sitter.pc.in Add a simple Makefile-based build system. 2020-04-21 23:49:19 -04:00

tree-sitter

CICD badge DOI

Tree-sitter is a parser generator tool and an incremental parsing library. It can build a concrete syntax tree for a source file and efficiently update the syntax tree as the source file is edited. Tree-sitter aims to be:

  • General enough to parse any programming language
  • Fast enough to parse on every keystroke in a text editor
  • Robust enough to provide useful results even in the presence of syntax errors
  • Dependency-free so that the runtime library (which is written in pure C) can be embedded in any application