diff options
author | Michael Davis | 2022-11-23 03:28:17 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-11-24 02:07:05 +0000 |
commit | cbc72e84d7a4c2a1ed5ec81bced3d280c69b4649 (patch) | |
tree | 4b1d894d5312d6d92cc393bf8320a810fc6024ca | |
parent | 5a1bed2b708f6874daa9f04b26b14b3106d2e447 (diff) |
Update tree-sitter-heex
tree-sitter-heex split out the ending_expression_value from the
partial_expression value which can help with indentation.
-rw-r--r-- | languages.toml | 2 | ||||
-rw-r--r-- | runtime/queries/heex/injections.scm | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/languages.toml b/languages.toml index 9007cc65..f6a238f4 100644 --- a/languages.toml +++ b/languages.toml @@ -1360,7 +1360,7 @@ config = { elixirLS.dialyzerEnabled = false } [[grammar]] name = "heex" -source = { git = "https://github.com/phoenixframework/tree-sitter-heex", rev = "881f1c805f51485a26ecd7865d15c9ef8d606a78" } +source = { git = "https://github.com/phoenixframework/tree-sitter-heex", rev = "2e1348c3cf2c9323e87c2744796cf3f3868aa82a" } [[language]] name = "sql" diff --git a/runtime/queries/heex/injections.scm b/runtime/queries/heex/injections.scm index d97e4b3e..159b6f0e 100644 --- a/runtime/queries/heex/injections.scm +++ b/runtime/queries/heex/injections.scm @@ -6,7 +6,11 @@ ; <%= if true do %> ; <p>hello, tree-sitter!</p> ; <% end %> -((directive (partial_expression_value) @injection.content) +((directive + [ + (partial_expression_value) + (ending_expression_value) + ] @injection.content) (#set! injection.language "elixir") (#set! injection.include-children) (#set! injection.combined)) |