Skip to content

Commit 1819478

Browse files
the-mikedavisarchseer
authored andcommitted
update tree-sitter-elixir
news: - tree-sitter-elixir now powers Elixir syntax highlighting on github.com - GitHub now supports code-navigation for Elixir repos via tree-sitter-elixir changes: - modules now use the `@module` highlight, which was added upstream to tree-sitter - it seems appropriate to use `@namespace` to follow helix convention - added nullary range operator (e.g. `Enum.to_list(..) == []`), a new syntax for elixir 1.14 - a fix for stab clause nodes mis-highlighting when the right hand side of the stab clause contained multiple simple expressions
1 parent e2a5071 commit 1819478

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

languages.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ source = { git = "https://github.com/yusdacra/tree-sitter-protobuf", rev = "19c2
7878
[[language]]
7979
name = "elixir"
8080
scope = "source.elixir"
81-
injection-regex = "elixir"
82-
file-types = ["ex", "exs"]
81+
injection-regex = "(elixir|ex)"
82+
file-types = ["ex", "exs", "mix.lock"]
8383
shebangs = ["elixir"]
8484
roots = []
8585
comment-token = "#"
@@ -88,7 +88,7 @@ indent = { tab-width = 2, unit = " " }
8888

8989
[[grammar]]
9090
name = "elixir"
91-
source = { git = "https://github.com/elixir-lang/tree-sitter-elixir", rev = "f5d7bda543da788bd507b05bd722627dde66c9ec" }
91+
source = { git = "https://github.com/elixir-lang/tree-sitter-elixir", rev = "60863fc6e27d60cf4b1917499ed2259f92c7800e" }
9292

9393
[[language]]
9494
name = "fish"

runtime/queries/elixir/highlights.scm

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@
8282
(integer) @constant.numeric.integer
8383
(float) @constant.numeric.float
8484

85-
(alias) @type
85+
(alias) @namespace
8686

8787
(call
8888
target: (dot
89-
left: (atom) @type))
89+
left: (atom) @namespace))
9090

9191
(char) @constant.character
9292

0 commit comments

Comments
 (0)