tree-sitter/docs/index.md

165 lines
9.3 KiB
Markdown
Raw Normal View History

2018-06-10 09:54:59 -07:00
---
title: Introduction
---
# Introduction
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:
2018-06-10 09:54:59 -07:00
* **General** enough to parse any programming language
2018-06-11 19:17:10 -07:00
* **Fast** enough to parse on every keystroke in a text editor
* **Robust** enough to provide useful results even in the presence of syntax errors
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* **Dependency-free** so that the runtime library (which is written in pure [C](https://github.com/tree-sitter/tree-sitter/tree/master/lib)) can be embedded in any application
2018-06-10 09:54:59 -07:00
### Language Bindings
There are currently bindings that allow Tree-sitter to be used from the following languages:
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Go](https://github.com/smacker/go-tree-sitter)
* [Haskell](https://github.com/tree-sitter/haskell-tree-sitter)
* [Java](https://github.com/serenadeai/java-tree-sitter)
* [JavaScript (Node.js)](https://github.com/tree-sitter/node-tree-sitter)
* [JavaScript (Wasm)](https://github.com/tree-sitter/tree-sitter/tree/master/lib/binding_web)
* [Kotlin](https://github.com/oxisto/kotlintree)
2021-11-19 13:58:46 -08:00
* [Lua](https://github.com/euclidianAce/ltreesitter)
* [OCaml](https://github.com/returntocorp/ocaml-tree-sitter-core)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Perl](https://metacpan.org/pod/Text::Treesitter)
* [Python](https://github.com/tree-sitter/py-tree-sitter)
2018-06-10 09:54:59 -07:00
* [Ruby](https://github.com/tree-sitter/ruby-tree-sitter)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Ruby](https://github.com/calicoday/ruby-tree-sitter-ffi)
* [Rust](https://github.com/tree-sitter/tree-sitter/tree/master/lib/binding_rust)
2021-11-17 11:30:32 -05:00
* [Swift](https://github.com/ChimeHQ/SwiftTreeSitter)
2018-06-10 09:54:59 -07:00
### Parsers
2018-06-10 09:54:59 -07:00
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Ada](https://github.com/briot/tree-sitter-ada)
* [Agda](https://github.com/tree-sitter/tree-sitter-agda)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Apex](https://github.com/aheber/tree-sitter-sfapex)
2018-06-10 09:54:59 -07:00
* [Bash](https://github.com/tree-sitter/tree-sitter-bash)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Beancount](https://github.com/zwpaper/tree-sitter-beancount)
* [Cap'n Proto](https://github.com/amaanq/tree-sitter-capnp)
* [C](https://github.com/tree-sitter/tree-sitter-c)
2018-06-10 09:54:59 -07:00
* [C++](https://github.com/tree-sitter/tree-sitter-cpp)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [C#](https://github.com/tree-sitter/tree-sitter-c-sharp)
* [Clojure](https://github.com/sogaiu/tree-sitter-clojure)
* [CMake](https://github.com/uyha/tree-sitter-cmake)
* [Comment](https://github.com/stsewd/tree-sitter-comment)
* [Common Lisp](https://github.com/theHamsta/tree-sitter-commonlisp)
2018-10-30 09:36:45 -07:00
* [CSS](https://github.com/tree-sitter/tree-sitter-css)
* [CUDA](https://github.com/theHamsta/tree-sitter-cuda)
* [Dart](https://github.com/UserNobody14/tree-sitter-dart)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [D](https://github.com/gdamore/tree-sitter-d)
* [Dockerfile](https://github.com/camdencheek/tree-sitter-dockerfile)
2021-08-29 20:20:56 +08:00
* [DOT](https://github.com/rydesun/tree-sitter-dot)
* [Elixir](https://github.com/elixir-lang/tree-sitter-elixir)
* [Elm](https://github.com/elm-tooling/tree-sitter-elm)
2021-09-26 22:51:50 -07:00
* [Emacs Lisp](https://github.com/Wilfred/tree-sitter-elisp)
* [Eno](https://github.com/eno-lang/tree-sitter-eno)
2018-07-05 16:45:27 -07:00
* [ERB / EJS](https://github.com/tree-sitter/tree-sitter-embedded-template)
* [Erlang](https://github.com/WhatsApp/tree-sitter-erlang/)
* [Fennel](https://github.com/travonted/tree-sitter-fennel)
* [Fish](https://github.com/ram02z/tree-sitter-fish)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Formula](https://github.com/siraben/tree-sitter-formula)
* [Fortran](https://github.com/stadelmanma/tree-sitter-fortran)
* [gitattributes](https://github.com/ObserverOfTime/tree-sitter-gitattributes)
* [gitignore](https://github.com/shunsambongi/tree-sitter-gitignore)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Gleam](https://github.com/gleam-lang/tree-sitter-gleam)
* [GLSL (OpenGL Shading Language)](https://github.com/theHamsta/tree-sitter-glsl)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Go](https://github.com/tree-sitter/tree-sitter-go)
* [Go mod](https://github.com/camdencheek/tree-sitter-go-mod)
* [Go work](https://github.com/omertuc/tree-sitter-go-work)
* [Graphql](https://github.com/bkegley/tree-sitter-graphql)
* [Hack](https://github.com/slackhq/tree-sitter-hack)
* [Haskell](https://github.com/tree-sitter/tree-sitter-haskell)
* [HCL](https://github.com/MichaHoffmann/tree-sitter-hcl)
2018-06-12 17:37:46 -07:00
* [HTML](https://github.com/tree-sitter/tree-sitter-html)
* [Java](https://github.com/tree-sitter/tree-sitter-java)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [JavaScript](https://github.com/tree-sitter/tree-sitter-javascript)
* [jq](https://github.com/flurie/tree-sitter-jq)
* [JSON5](https://github.com/Joakker/tree-sitter-json5)
2022-05-04 00:01:02 +09:00
* [JSON](https://github.com/tree-sitter/tree-sitter-json)
* [Julia](https://github.com/tree-sitter/tree-sitter-julia)
* [Kotlin](https://github.com/fwcd/tree-sitter-kotlin)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [LALRPOP](https://github.com/traxys/tree-sitter-lalrpop)
* [Latex](https://github.com/latex-lsp/tree-sitter-latex)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Lean](https://github.com/Julian/tree-sitter-lean)
* [LLVM](https://github.com/benwilliamgraham/tree-sitter-llvm)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [LLVM MachineIR](https://github.com/Flakebi/tree-sitter-llvm-mir)
* [LLVM TableGen](https://github.com/Flakebi/tree-sitter-tablegen)
2019-05-31 09:20:49 -07:00
* [Lua](https://github.com/Azganoth/tree-sitter-lua)
* [Make](https://github.com/alemuller/tree-sitter-make)
2019-09-30 20:10:37 +08:00
* [Markdown](https://github.com/ikatyang/tree-sitter-markdown)
* [Markdown](https://github.com/MDeiml/tree-sitter-markdown)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Meson](https://github.com/Decodetalkers/tree-sitter-meson)
* [Meson](https://github.com/staysail/tree-sitter-meson)
* [Motorola 68000 Assembly](https://github.com/grahambates/tree-sitter-m68k)
* [Nix](https://github.com/cstrahan/tree-sitter-nix)
* [Objective-C](https://github.com/jiyee/tree-sitter-objc)
2018-07-05 16:45:27 -07:00
* [OCaml](https://github.com/tree-sitter/tree-sitter-ocaml)
* [Org](https://github.com/milisims/tree-sitter-org)
* [Pascal](https://github.com/Isopod/tree-sitter-pascal)
* [Perl](https://github.com/ganezdragon/tree-sitter-perl)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Perl](https://github.com/tree-sitter-perl/tree-sitter-perl)
* [Perl POD](https://github.com/tree-sitter-perl/tree-sitter-pod)
2018-06-10 09:54:59 -07:00
* [PHP](https://github.com/tree-sitter/tree-sitter-php)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Portable Game Notation](https://github.com/rolandwalker/tree-sitter-pgn)
* [PowerShell](https://github.com/PowerShell/tree-sitter-PowerShell)
* [Protocol Buffers](https://github.com/mitchellh/tree-sitter-proto)
2018-06-10 09:54:59 -07:00
* [Python](https://github.com/tree-sitter/tree-sitter-python)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [QML](https://github.com/yuja/tree-sitter-qmljs)
* [Racket](https://github.com/6cdh/tree-sitter-racket)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Rasi](https://github.com/Fymyte/tree-sitter-rasi)
* [re2c](https://github.com/alemuller/tree-sitter-re2c)
* [Regex](https://github.com/tree-sitter/tree-sitter-regex)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Rego](https://github.com/FallenAngel97/tree-sitter-rego)
* [reStructuredText](https://github.com/stsewd/tree-sitter-rst)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [R](https://github.com/r-lib/tree-sitter-r)
2018-06-10 09:54:59 -07:00
* [Ruby](https://github.com/tree-sitter/tree-sitter-ruby)
* [Rust](https://github.com/tree-sitter/tree-sitter-rust)
* [Scala](https://github.com/tree-sitter/tree-sitter-scala)
* [Scheme](https://github.com/6cdh/tree-sitter-scheme)
* [Scss](https://github.com/serenadeai/tree-sitter-scss)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [S-expressions](https://github.com/AbstractMachinesLab/tree-sitter-sexp)
* [Smali](https://github.com/amaanq/tree-sitter-smali)
* [Smali](https://git.sr.ht/~yotam/tree-sitter-smali)
* [Sourcepawn](https://github.com/nilshelmig/tree-sitter-sourcepawn)
2021-03-17 23:11:11 +01:00
* [SPARQL](https://github.com/BonaBeavis/tree-sitter-sparql)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [SQL - BigQuery](https://github.com/takegue/tree-sitter-sql-bigquery)
* [SQL - PostgreSQL](https://github.com/m-novikov/tree-sitter-sql)
* [SQL - SQLite](https://github.com/dhcmrlchtdj/tree-sitter-sqlite)
* [SSH](https://github.com/metio/tree-sitter-ssh-client-config)
* [Svelte](https://github.com/Himujjal/tree-sitter-svelte)
2022-09-05 16:21:12 -04:00
* [Swift](https://github.com/alex-pinkus/tree-sitter-swift)
* [SystemRDL](https://github.com/SystemRDL/tree-sitter-systemrdl)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Thrift](https://github.com/duskmoon314/tree-sitter-thrift)
2019-09-01 02:30:11 +08:00
* [TOML](https://github.com/ikatyang/tree-sitter-toml)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [Tree-sitter Query](https://github.com/nvim-treesitter/tree-sitter-query)
2021-03-17 23:11:11 +01:00
* [Turtle](https://github.com/BonaBeavis/tree-sitter-turtle)
2022-10-04 10:08:56 +02:00
* [Twig](https://github.com/gbprod/tree-sitter-twig)
2018-06-10 09:54:59 -07:00
* [TypeScript](https://github.com/tree-sitter/tree-sitter-typescript)
* [Verilog](https://github.com/tree-sitter/tree-sitter-verilog)
2020-10-29 19:08:55 +00:00
* [VHDL](https://github.com/alemuller/tree-sitter-vhdl)
2019-10-04 20:38:01 +08:00
* [Vue](https://github.com/ikatyang/tree-sitter-vue)
* [WASM](https://github.com/wasm-lsp/tree-sitter-wasm)
* [WGSL WebGPU Shading Language](https://github.com/mehmetoguzderin/tree-sitter-wgsl)
* [YAML](https://github.com/ikatyang/tree-sitter-yaml)
docs: merge of all binding and grammar link PRs Joined commit messages: --- Closes: #2048 docs: add capnp, smali, thrift Closes: #2026 Add Perl binding Closes: #1989 Add Ada to the list of available parsers Closes: #1980 Add clojure to list of available parsers After some discussion in https://github.com/sogaiu/tree-sitter-clojure/issues/28 I decided to submit an issue to the tree-sitter organization to include tree-sitter-clojure in their list of available parsers. This repository is used by a couple of editors and tools, and I am using it to build a tree-sitter based programming mode for Clojure in Emacs. Since there are a couple of tools that depend on it, it seems worthy of inclusion in an official list of tree-sitter grammars. Closes: #1943 Add meson grammar to list. Closes: #1926 docs(meson): add parse for meson add meson Closes: #1912 Merge branch 'master' into add-heex-parser Closes: #1908 Add Apex to available parsers Closes: #1876 Add tree-sitter-gleam to list of available parsers Closes: #1862 DOCS: Add entries various SQL flavor parsers Closes: #1857 Add Go to the available language bindings Closes: #1856 docs: add jq grammar Closes: #1828 Add tree sitter lalrpop This is a parser for https://github.com/lalrpop/lalrpop, a parser generator for use in Rust. It is still in development because it should support some kind of highlighting of the pseudo rust code used in rules. Closes: #1733 Add YANG parser to parser list I wrote this parser over summer vacation last year and I've been using it at work every day since. Closes: #1728 Add link to m68k grammar Link to m68k (Motorola 68000 assembly) grammar in docs. Closes: #1697 Added rego language Closes: #1694 docs: add Formula parser Closes: #1672 docs: Add link to QML (Qt UI spec/programming language) parser Closes: #1671 parser: add beancount parser link Closes: #1623 Add link to llvm grammars Add links to LLVM IR, MIR and TableGen parsers. Closes: #1579 Add my Smali parser to the WIP list Closes: #1575 Update index.md Closes: #1563 Add re2c and sort alphabetically Added re2c parser (lexer generator). Sorted the list alphabetically case-insensitively. Closes: #1209 add link to chess Portable Game Notation grammar Closes: #1176 Add tree-sitter-lean. Closes: #1123 Add parsers to list --- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> Co-authored-by: Felipe Gasper <FGasper@users.noreply.github.com> Co-authored-by: Emmanuel Briot <briot.emmanuel@gmail.com> Co-authored-by: Danny Freeman <dannyfreeman@users.noreply.github.com> Co-authored-by: Garrett D'Amore <garrett@damore.org> Co-authored-by: ShootingStarDragons <ShootingStarDragons@protonmail.com> Co-authored-by: Clay <connorlay@users.noreply.github.com> Co-authored-by: Anthony Heber <anthony@heber.dev> Co-authored-by: Jonathan Arnett <jonarnett90@gmail.com> Co-authored-by: takegue <takegue@gmail.com> Co-authored-by: Cédric Fabianski <cedric@bearer.sh> Co-authored-by: flurie <flurie@gmail.com> Co-authored-by: traxys <quentin+dev@familleboyer.net> Co-authored-by: Tomas Sandven <597206+Hubro@users.noreply.github.com> Co-authored-by: Graham Bates <info@grahambates.com> Co-authored-by: Lex <mr.x97@mail.ru> Co-authored-by: Ben Siraphob <bensiraphob@gmail.com> Co-authored-by: Yuya Nishihara <yuya@tcha.org> Co-authored-by: WeiZhang <kweizh@gmail.com> Co-authored-by: Flakebi <flakebi@t-online.de> Co-authored-by: Yotam <me@yotam.net> Co-authored-by: Fymyte <34305318+Fymyte@users.noreply.github.com> Co-authored-by: Alexandre A. Muller <muller@outlook.com> Co-authored-by: Roland Walker <walker@pobox.com> Co-authored-by: Julian Berman <Julian@GrayVines.com> Co-authored-by: Santos Gallegos <stsewd@protonmail.com>
2023-01-27 10:15:23 +02:00
* [YANG](https://github.com/Hubro/tree-sitter-yang)
* [Zig](https://github.com/maxxnino/tree-sitter-zig)
2018-06-10 09:54:59 -07:00
### Talks on Tree-sitter
* [Strange Loop 2018](https://www.thestrangeloop.com/2018/tree-sitter---a-new-parsing-system-for-programming-tools.html)
2018-06-10 09:54:59 -07:00
* [FOSDEM 2018](https://www.youtube.com/watch?v=0CGzC_iss-8)
* [GitHub Universe 2017](https://www.youtube.com/watch?v=a1rC79DHpmY)
2018-06-11 19:17:10 -07:00
### Underlying Research
The design of Tree-sitter was greatly influenced by the following research papers:
* [Practical Algorithms for Incremental Software Development Environments](https://www2.eecs.berkeley.edu/Pubs/TechRpts/1997/CSD-97-946.pdf)
* [Context Aware Scanning for Parsing Extensible Languages](https://www-users.cse.umn.edu/~evw/pubs/vanwyk07gpce/vanwyk07gpce.pdf)
* [Efficient and Flexible Incremental Parsing](https://harmonia.cs.berkeley.edu/papers/twagner-parsing.pdf)
* [Incremental Analysis of Real Programming Languages](https://harmonia.cs.berkeley.edu/papers/twagner-glr.pdf)
* [Error Detection and Recovery in LR Parsers](https://what-when-how.com/compiler-writing/bottom-up-parsing-compiler-writing-part-13)
* [Error Recovery for LR Parsers](https://apps.dtic.mil/sti/pdfs/ADA043470.pdf)