mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-25 10:56:19 +04:00
add tree-sitter-heex
HEEx is a templating engine on top of Elixir's EEx templating language specific to HTML that is included in Phoenix.LiveView (though I think the plan is to eventually include it in base Phoenix). It's a superset of EEx with some additional features like components and slots. The injections don't work perfectly because the Elixir grammar is newline sensitive (the _terminator rule). See https://github.com/elixir-lang/tree-sitter-elixir/issues/24 for more information.
This commit is contained in:
parent
9d095e0fdc
commit
4836bb38d3
@ -26,6 +26,7 @@
|
|||||||
| graphql | ✓ | | | |
|
| graphql | ✓ | | | |
|
||||||
| haskell | ✓ | | | `haskell-language-server-wrapper` |
|
| haskell | ✓ | | | `haskell-language-server-wrapper` |
|
||||||
| hcl | ✓ | | ✓ | `terraform-ls` |
|
| hcl | ✓ | | ✓ | `terraform-ls` |
|
||||||
|
| heex | ✓ | | | |
|
||||||
| html | ✓ | | | `vscode-html-language-server` |
|
| html | ✓ | | | `vscode-html-language-server` |
|
||||||
| iex | ✓ | | | |
|
| iex | ✓ | | | |
|
||||||
| java | ✓ | | | |
|
| java | ✓ | | | |
|
||||||
|
@ -1125,3 +1125,15 @@ indent = { tab-width = 2, unit = " " }
|
|||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "eex"
|
name = "eex"
|
||||||
source = { git = "https://github.com/connorlay/tree-sitter-eex", rev = "f742f2fe327463335e8671a87c0b9b396905d1d1" }
|
source = { git = "https://github.com/connorlay/tree-sitter-eex", rev = "f742f2fe327463335e8671a87c0b9b396905d1d1" }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "heex"
|
||||||
|
scope = "source.heex"
|
||||||
|
injection-regex = "heex"
|
||||||
|
file-types = ["heex"]
|
||||||
|
roots = []
|
||||||
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
|
[[grammar]]
|
||||||
|
name = "heex"
|
||||||
|
source = { git = "https://github.com/connorlay/tree-sitter-heex", rev = "592e22292a367312c35e13de7fdb888f029981d6" }
|
||||||
|
@ -7,3 +7,10 @@
|
|||||||
(#match? @_sigil_name "^(r|R)$")
|
(#match? @_sigil_name "^(r|R)$")
|
||||||
(#set! injection.language "regex")
|
(#set! injection.language "regex")
|
||||||
(#set! injection.combined))
|
(#set! injection.combined))
|
||||||
|
|
||||||
|
((sigil
|
||||||
|
(sigil_name) @_sigil_name
|
||||||
|
(quoted_content) @injection.content)
|
||||||
|
(#match? @_sigil_name "^(h|H)$")
|
||||||
|
(#set! injection.language "heex")
|
||||||
|
(#set! injection.combined))
|
||||||
|
58
runtime/queries/heex/highlights.scm
Normal file
58
runtime/queries/heex/highlights.scm
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
; https://github.com/connorlay/tree-sitter-heex/blob/592e22292a367312c35e13de7fdb888f029981d6/queries/highlights.scm
|
||||||
|
; HEEx delimiters
|
||||||
|
[
|
||||||
|
"<!"
|
||||||
|
"<!--"
|
||||||
|
"<"
|
||||||
|
"<%!--"
|
||||||
|
"<%#"
|
||||||
|
">"
|
||||||
|
"</"
|
||||||
|
"--%>"
|
||||||
|
"-->"
|
||||||
|
"/>"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
; These could be `@keyword`s but the closing `>` wouldn't be highlighted
|
||||||
|
; as `@keyword`
|
||||||
|
"<:"
|
||||||
|
"</:"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
||||||
|
; Non-comment or tag delimiters
|
||||||
|
[
|
||||||
|
"<%"
|
||||||
|
"<%="
|
||||||
|
"<%%="
|
||||||
|
"%>"
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
; HEEx operators are highlighted as such
|
||||||
|
"=" @operator
|
||||||
|
|
||||||
|
; HEEx inherits the DOCTYPE tag from HTML
|
||||||
|
(doctype) @constant
|
||||||
|
|
||||||
|
; HEEx comments are highlighted as such
|
||||||
|
(comment) @comment
|
||||||
|
|
||||||
|
; HEEx tags are highlighted as HTML
|
||||||
|
(tag_name) @tag
|
||||||
|
|
||||||
|
; HEEx slots are highlighted as atoms (symbols)
|
||||||
|
(slot_name) @string.special.symbol
|
||||||
|
|
||||||
|
; HEEx attributes are highlighted as HTML attributes
|
||||||
|
(attribute_name) @attribute
|
||||||
|
[
|
||||||
|
(attribute_value)
|
||||||
|
(quoted_attribute_value)
|
||||||
|
] @string
|
||||||
|
|
||||||
|
; HEEx components are highlighted as Elixir modules and functions
|
||||||
|
(component_name
|
||||||
|
[
|
||||||
|
(module) @module
|
||||||
|
(function) @function
|
||||||
|
"." @punctuation.delimiter
|
||||||
|
])
|
21
runtime/queries/heex/injections.scm
Normal file
21
runtime/queries/heex/injections.scm
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
; https://github.com/connorlay/tree-sitter-heex/blob/592e22292a367312c35e13de7fdb888f029981d6/queries/injections.scm
|
||||||
|
; directives are standalone tags like '<%= @x %>'
|
||||||
|
;
|
||||||
|
; partial_expression_values are elixir code that is part of an expression that
|
||||||
|
; spans multiple directive nodes, so they must be combined. For example:
|
||||||
|
; <%= if true do %>
|
||||||
|
; <p>hello, tree-sitter!</p>
|
||||||
|
; <% end %>
|
||||||
|
((directive (partial_expression_value) @injection.content)
|
||||||
|
(#set! injection.language "elixir")
|
||||||
|
(#set! injection.include-children)
|
||||||
|
(#set! injection.combined))
|
||||||
|
|
||||||
|
; Regular expression_values do not need to be combined
|
||||||
|
((directive (expression_value) @injection.content)
|
||||||
|
(#set! injection.language "elixir"))
|
||||||
|
|
||||||
|
; expressions live within HTML tags, and do not need to be combined
|
||||||
|
; <link href={ Routes.static_path(..) } />
|
||||||
|
((expression (expression_value) @injection.content)
|
||||||
|
(#set! injection.language "elixir"))
|
Loading…
Reference in New Issue
Block a user