diff options
| author | Wilhelm H Kirschbaum | 2023-03-12 17:10:43 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2023-03-12 17:41:44 +0200 |
| commit | d965d030879d9ca4ef5098cb4e2e7c56128b904b (patch) | |
| tree | 8ab985a3946eac5e52417f7bb32b012db3db0af5 /admin/notes | |
| parent | 802e64922bcee40c8362b9627aa33a0de0c068d7 (diff) | |
| download | emacs-d965d030879d9ca4ef5098cb4e2e7c56128b904b.tar.gz emacs-d965d030879d9ca4ef5098cb4e2e7c56128b904b.zip | |
Add elixir-ts-mode (Bug#61996)
* etc/NEWS: Mention the new mode.
* lisp/progmodes/elixir-ts-mode.el: New file.
* test/lisp/progmodes/elixir-ts-mode-tests.el: New file.
* test/lisp/progmodes/elixir-ts-mode-resources/indent.erts: New file.
* admin/notes/tree-sitter/build-module/batch.sh:
* admin/notes/tree-sitter/build-module/build.sh: Add Elixir support.
* lisp/progmodes/eglot.el (eglot-server-programs): Add elixir-ts-mode.
Diffstat (limited to 'admin/notes')
| -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 8b0072782e8..1d4076564dc 100755 --- a/admin/notes/tree-sitter/build-module/batch.sh +++ b/admin/notes/tree-sitter/build-module/batch.sh | |||
| @@ -8,6 +8,7 @@ languages=( | |||
| 8 | 'css' | 8 | 'css' |
| 9 | 'c-sharp' | 9 | 'c-sharp' |
| 10 | 'dockerfile' | 10 | 'dockerfile' |
| 11 | 'elixir' | ||
| 11 | 'go' | 12 | 'go' |
| 12 | 'go-mod' | 13 | 'go-mod' |
| 13 | 'heex' | 14 | 'heex' |
diff --git a/admin/notes/tree-sitter/build-module/build.sh b/admin/notes/tree-sitter/build-module/build.sh index 78ecfb5bc82..0832875168b 100755 --- a/admin/notes/tree-sitter/build-module/build.sh +++ b/admin/notes/tree-sitter/build-module/build.sh | |||
| @@ -31,6 +31,9 @@ case "${lang}" in | |||
| 31 | "cmake") | 31 | "cmake") |
| 32 | org="uyha" | 32 | org="uyha" |
| 33 | ;; | 33 | ;; |
| 34 | "elixir") | ||
| 35 | org="elixir-lang" | ||
| 36 | ;; | ||
| 34 | "go-mod") | 37 | "go-mod") |
| 35 | # The parser is called "gomod". | 38 | # The parser is called "gomod". |
| 36 | lang="gomod" | 39 | lang="gomod" |