diff options
| author | Wilhelm H Kirschbaum | 2023-03-12 17:08:50 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2023-03-12 17:40:06 +0200 |
| commit | 802e64922bcee40c8362b9627aa33a0de0c068d7 (patch) | |
| tree | 058a1aa497056b49763b8edfa8b9171ac18c0a67 /admin | |
| parent | d19416d15c29368112fba9a7437930abcec9af3b (diff) | |
| download | emacs-802e64922bcee40c8362b9627aa33a0de0c068d7.tar.gz emacs-802e64922bcee40c8362b9627aa33a0de0c068d7.zip | |
Add heex-ts-mode (Bug#61996)
* etc/NEWS: Mention the new mode.
* lisp/progmodes/heex-ts-mode.el: New file.
* test/lisp/progmodes/heex-ts-mode-tests.el: New file.
* test/lisp/progmodes/heex-ts-mode-resources/indent.erts: New file.
* admin/notes/tree-sitter/build-module/batch.sh:
* admin/notes/tree-sitter/build-module/build.sh: Add HEEx support.
Diffstat (limited to 'admin')
| -rwxr-xr-x | admin/notes/tree-sitter/build-module/batch.sh | 1 | ||||
| -rwxr-xr-x | admin/notes/tree-sitter/build-module/build.sh | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/admin/notes/tree-sitter/build-module/batch.sh b/admin/notes/tree-sitter/build-module/batch.sh index 58272c74549..8b0072782e8 100755 --- a/admin/notes/tree-sitter/build-module/batch.sh +++ b/admin/notes/tree-sitter/build-module/batch.sh | |||
| @@ -10,6 +10,7 @@ languages=( | |||
| 10 | 'dockerfile' | 10 | 'dockerfile' |
| 11 | 'go' | 11 | 'go' |
| 12 | 'go-mod' | 12 | 'go-mod' |
| 13 | 'heex' | ||
| 13 | 'html' | 14 | 'html' |
| 14 | 'javascript' | 15 | 'javascript' |
| 15 | 'json' | 16 | 'json' |
diff --git a/admin/notes/tree-sitter/build-module/build.sh b/admin/notes/tree-sitter/build-module/build.sh index 9dc674237ca..78ecfb5bc82 100755 --- a/admin/notes/tree-sitter/build-module/build.sh +++ b/admin/notes/tree-sitter/build-module/build.sh | |||
| @@ -36,6 +36,9 @@ case "${lang}" in | |||
| 36 | lang="gomod" | 36 | lang="gomod" |
| 37 | org="camdencheek" | 37 | org="camdencheek" |
| 38 | ;; | 38 | ;; |
| 39 | "heex") | ||
| 40 | org="phoenixframework" | ||
| 41 | ;; | ||
| 39 | "typescript") | 42 | "typescript") |
| 40 | sourcedir="tree-sitter-typescript/typescript/src" | 43 | sourcedir="tree-sitter-typescript/typescript/src" |
| 41 | grammardir="tree-sitter-typescript/typescript" | 44 | grammardir="tree-sitter-typescript/typescript" |