Skip to content

Commit 71ac64f

Browse files
jcs090218ubolonton
andauthored
feat: Add Jsonnet support (#234)
* Release 0.12.38 * feat: Add jsonnet support * Update CHANGELOG.md --------- Co-authored-by: Tuấn-Anh Nguyễn <[email protected]>
1 parent 61aeb98 commit 71ac64f

File tree

5 files changed

+13
-2
lines changed

5 files changed

+13
-2
lines changed

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,3 +352,9 @@
352352
branch = master
353353
update = none
354354
ignore = dirty
355+
[submodule "repos/jsonnet"]
356+
path = repos/jsonnet
357+
url = https://github.com/sourcegraph/tree-sitter-jsonnet
358+
branch = main
359+
update = none
360+
ignore = dirty

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

33
## Unreleased
4+
- Add `Jsonnet` support
5+
6+
## 0.12.38 - 2023-09-04
47

58
## 0.12.37 - 2023-09-04
69
- Add `Xml` support

repos/jsonnet

Submodule jsonnet added at d34615f

tree-sitter-langs-build.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ latest commit."
227227
;; ---------------------------------------------------------------------------
228228
;;; Building language grammars.
229229

230-
(defconst tree-sitter-langs--bundle-version "0.12.37"
230+
(defconst tree-sitter-langs--bundle-version "0.12.38"
231231
"Version of the grammar bundle.
232232
This should be bumped whenever a language submodule is updated, which should be
233233
infrequent (grammar-only changes). It is different from the version of

tree-sitter-langs.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; Author: Tuấn-Anh Nguyễn <[email protected]>
66
;; Keywords: languages tools parsers tree-sitter
77
;; Homepage: https://github.com/emacs-tree-sitter/tree-sitter-langs
8-
;; Version: 0.12.37
8+
;; Version: 0.12.38
99
;; Package-Requires: ((emacs "25.1") (tree-sitter "0.15.0"))
1010
;; SPDX-License-Identifier: MIT
1111

@@ -136,6 +136,7 @@ See `tree-sitter-langs-repos'."
136136
(js3-mode . javascript)
137137
(json-mode . json)
138138
(jsonc-mode . json)
139+
(jsonnet-mode . jsonnet)
139140
(julia-mode . julia)
140141
(kotlin-mode . kotlin)
141142
(latex-mode . latex)

0 commit comments

Comments
 (0)