diff options
author | Clay | 2022-09-25 06:51:25 +0000 |
---|---|---|
committer | GitHub | 2022-09-25 06:51:25 +0000 |
commit | 1a4a9b86d74eade2a8df4ae68d97433323f22fac (patch) | |
tree | 73c628f9e5cc4a58e1b06a53276338511fc1b7c2 | |
parent | 42e30e7afaead4fc10a155802e168d2acc0afe81 (diff) |
heex: upgrade grammar, add roots matching elixir (#3959)
-rw-r--r-- | languages.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/languages.toml b/languages.toml index 133b87ae..a7b8f93d 100644 --- a/languages.toml +++ b/languages.toml @@ -1287,7 +1287,7 @@ name = "eex" scope = "source.eex" injection-regex = "eex" file-types = ["eex"] -roots = [] +roots = ["mix.exs", "mix.lock"] indent = { tab-width = 2, unit = " " } [[grammar]] @@ -1299,12 +1299,12 @@ name = "heex" scope = "source.heex" injection-regex = "heex" file-types = ["heex"] -roots = [] +roots = ["mix.exs", "mix.lock"] indent = { tab-width = 2, unit = " " } [[grammar]] name = "heex" -source = { git = "https://github.com/phoenixframework/tree-sitter-heex", rev = "961bc4d2937cfd24ceb0a5a6b2da607809f8822e" } +source = { git = "https://github.com/phoenixframework/tree-sitter-heex", rev = "881f1c805f51485a26ecd7865d15c9ef8d606a78" } [[language]] name = "sql" |