aboutsummaryrefslogtreecommitdiff
path: root/languages.toml
diff options
context:
space:
mode:
authorMichael Davis2022-03-02 15:09:45 +0000
committerBlaž Hrastnik2022-03-30 04:24:53 +0000
commit18194789407c23d4076e8f3f54ad493d93fac258 (patch)
treef25c42b09ddae5c586aa288863910229c7cbdd1b /languages.toml
parente2a50711d5ca1029b28b1ddaeb3b2989ade7d651 (diff)
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
Diffstat (limited to 'languages.toml')
-rw-r--r--languages.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/languages.toml b/languages.toml
index 9c1a4334..ce51e4fc 100644
--- a/languages.toml
+++ b/languages.toml
@@ -78,8 +78,8 @@ source = { git = "https://github.com/yusdacra/tree-sitter-protobuf", rev = "19c2
[[language]]
name = "elixir"
scope = "source.elixir"
-injection-regex = "elixir"
-file-types = ["ex", "exs"]
+injection-regex = "(elixir|ex)"
+file-types = ["ex", "exs", "mix.lock"]
shebangs = ["elixir"]
roots = []
comment-token = "#"
@@ -88,7 +88,7 @@ indent = { tab-width = 2, unit = " " }
[[grammar]]
name = "elixir"
-source = { git = "https://github.com/elixir-lang/tree-sitter-elixir", rev = "f5d7bda543da788bd507b05bd722627dde66c9ec" }
+source = { git = "https://github.com/elixir-lang/tree-sitter-elixir", rev = "60863fc6e27d60cf4b1917499ed2259f92c7800e" }
[[language]]
name = "fish"