An incremental parsing system for programming tools https://tree-sitter.github.io
Find a file
dependabot[bot] 5cca35e2ef
chore(deps-dev): bump commonmarker from 0.23.9 to 0.23.10 in /docs
Bumps [commonmarker](https://github.com/gjtorikian/commonmarker) from 0.23.9 to 0.23.10.
- [Release notes](https://github.com/gjtorikian/commonmarker/releases)
- [Changelog](https://github.com/gjtorikian/commonmarker/blob/v0.23.10/CHANGELOG.md)
- [Commits](https://github.com/gjtorikian/commonmarker/compare/v0.23.9...v0.23.10)

---
updated-dependencies:
- dependency-name: commonmarker
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-08-08 20:25:20 +00:00
.github ci: add asan 2023-07-24 01:15:48 -04:00
cli fix: pad hex numbers with zeros when writing colors 2023-08-08 09:04:15 -04:00
docs chore(deps-dev): bump commonmarker from 0.23.9 to 0.23.10 in /docs 2023-08-08 20:25:20 +00:00
highlight docs: update tree-sitter-higlight README 2023-08-06 22:13:04 -04:00
lib fix: ensure function signatures in the API consistently show parameter names 2023-08-03 22:17:53 +01:00
script Remove Copy, Clone from TSLookaheadIterator raw binding struct 2023-08-02 00:04:17 +03:00
tags fix(asan): only use slice::from_raw_parts if locals_query is not null 2023-07-24 00:44:44 -04:00
test ci: rework fuzzer script 2023-07-24 00:44:44 -04:00
.gitattributes Exclude huge generated files from git diff output 2023-01-14 08:58:25 +02:00
.gitignore Add build.zig for easy use as a Zig library 2023-07-16 16:39:55 +03:00
build.zig Add build.zig for easy use as a Zig library 2023-07-16 16:39:55 +03:00
Cargo.lock chore: update Cargo.lock 2023-07-20 07:04:49 -04:00
Cargo.toml feat: better optimizations for release builds 2023-07-19 16:07:46 -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: rename shadowed variables from -Wshadow warnings and apply some useful clang-tidy warnings 2023-07-19 18:12:26 -04: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