Skip to content

Add java support. #142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ Here is a list of the languages currently supported.
+--------------------+--------------------------------------------------------------+--------------------+
|Go |go-mode, go-ts-mode |v0.20.0 |
+--------------------+--------------------------------------------------------------+--------------------+
|Java |java-mode, java-ts-mode |v0.23.5 |
+--------------------+--------------------------------------------------------------+--------------------+


*Don't see your language? If you want your favourite language added, then why not try it yourself? Have a look at ``combobulate-json.el`` for an example.*
Expand Down Expand Up @@ -225,7 +227,8 @@ Note that this example uses ``major-mode-remap-alist`` to turn your regular majo
(toml . ("https://github.com/tree-sitter/tree-sitter-toml" "v0.5.1"))
(tsx . ("https://github.com/tree-sitter/tree-sitter-typescript" "v0.20.3" "tsx/src"))
(typescript . ("https://github.com/tree-sitter/tree-sitter-typescript" "v0.20.3" "typescript/src"))
(yaml . ("https://github.com/ikatyang/tree-sitter-yaml" "v0.5.0"))))
(yaml . ("https://github.com/ikatyang/tree-sitter-yaml" "v0.5.0"))
(java . ("https://github.com/tree-sitter/tree-sitter-java" "v0.23.5"))))
(add-to-list 'treesit-language-source-alist grammar)
;; Only install `grammar' if we don't already have it
;; installed. However, if you want to *update* a grammar then
Expand Down
Loading