mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 04:17:43 +03:00
add tree-sitter-embedded-template (erb & ejs) (#2055)
After the incremental parsing rewrite for injections (which was released in 22.03 https://helix-editor.com/news/release-22-03-highlights/#incremental-injection-parsing-rewrite), we can now do combined injections which lets us pull in some templating grammars. The most notable of those is embedded-template - a pretty straightforward grammar that covers ERB and EJS. The grammar and highlights queries are shared between the two but they have different injections.
This commit is contained in:
parent
78b1600943
commit
494306ad7a
6 changed files with 51 additions and 0 deletions
12
runtime/queries/ejs/highlights.scm
Normal file
12
runtime/queries/ejs/highlights.scm
Normal file
|
@ -0,0 +1,12 @@
|
|||
(comment_directive) @comment
|
||||
|
||||
[
|
||||
"<%#"
|
||||
"<%"
|
||||
"<%="
|
||||
"<%_"
|
||||
"<%-"
|
||||
"%>"
|
||||
"-%>"
|
||||
"_%>"
|
||||
] @keyword
|
7
runtime/queries/ejs/injections.scm
Normal file
7
runtime/queries/ejs/injections.scm
Normal file
|
@ -0,0 +1,7 @@
|
|||
((content) @injection.content
|
||||
(#set! injection.language "html")
|
||||
(#set! injection.combined))
|
||||
|
||||
((code) @injection.content
|
||||
(#set! injection.language "javascript")
|
||||
(#set! injection.combined))
|
Loading…
Add table
Add a link
Reference in a new issue