diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ca8f2f94..44e7268b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ syntactic changes". Fixed an issue in C and C++ where blank lines were highlighted after novel preprocessor lines. +Added support for Janet. + ## 0.24 (release 26th March 2022) ### Diffing diff --git a/README.md b/README.md index 1d29eba90..8e3244827 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ Difftastic supports the following languages: * Emacs Lisp * Go * Haskell +* Janet * Java * JavaScript (and JSX) * JSON diff --git a/manual/src/introduction.md b/manual/src/introduction.md index be1141b27..c80610084 100644 --- a/manual/src/introduction.md +++ b/manual/src/introduction.md @@ -16,6 +16,7 @@ tool that understands syntax. It supports the following languages: * Go * Hack * Haskell +* Janet * Java * JavaScript (and JSX) * JSON diff --git a/manual/src/upstream_parsers.md b/manual/src/upstream_parsers.md index 557422c38..50baaed17 100644 --- a/manual/src/upstream_parsers.md +++ b/manual/src/upstream_parsers.md @@ -16,6 +16,7 @@ Difftastic uses the following tree-sitter parsers: | Emacs Lisp | [wilfred/tree-sitter-elisp](https://github.com/Wilfred/tree-sitter-elisp) | | Go | [tree-sitter/tree-sitter-go](https://github.com/tree-sitter/tree-sitter-go) | | Haskell | [tree-sitter/tree-sitter-haskell](https://github.com/tree-sitter/tree-sitter-haskell) | +| Janet | [sogaiu/tree-sitter-janet-simple](https://github.com/sogaiu/tree-sitter-janet-simple) | | Java | [tree-sitter/tree-sitter-java](https://github.com/tree-sitter/tree-sitter-java) | | JavaScript, JSX | [tree-sitter/tree-sitter-javascript](https://github.com/tree-sitter/tree-sitter-javascript) | | JSON | [tree-sitter/tree-sitter-json](https://github.com/tree-sitter/tree-sitter-json) |