diff options
author | Michael Davis | 2022-03-02 14:54:44 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-03-30 04:24:53 +0000 |
commit | e2a50711d5ca1029b28b1ddaeb3b2989ade7d651 (patch) | |
tree | 9d11902104d1e4da3540ad4580af03c09a7d3ecf /languages.toml | |
parent | f2dd3d446914ec0953cd7e056d430fc3b959e75d (diff) |
update tree-sitter-erlang
changes:
- typed fields within records which do not declare a default
value are now correctly highlighted as record fields
- the EEP49 'maybe' form is now parsed
- fixes for highlights for 'begin' and 'after' tokens
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/languages.toml b/languages.toml index 265f462d..9c1a4334 100644 --- a/languages.toml +++ b/languages.toml @@ -939,15 +939,16 @@ source = { git = "https://github.com/jaredramirez/tree-sitter-rescript", rev = " [[language]] name = "erlang" scope = "source.erlang" -injection-regex = "^erl$" -file-types = ["erl", "hrl", "app", "rebar.config"] +injection-regex = "erl(ang)?" +file-types = ["erl", "hrl", "app", "rebar.config", "rebar.lock"] roots = ["rebar.config"] comment-token = "%%" indent = { tab-width = 4, unit = " " } +language-server = { command = "erlang_ls" } [[grammar]] name = "erlang" -source = { git = "https://github.com/the-mikedavis/tree-sitter-erlang", rev = "86985bde399c5f40b00bc75f7ab70a6c69a5f9c3" } +source = { git = "https://github.com/the-mikedavis/tree-sitter-erlang", rev = "1e81393b8f0a81b35ff1679a9420fafbd2cf3511" } [[language]] name = "kotlin" |