diff options
author | Michael Davis | 2022-04-09 23:23:06 +0000 |
---|---|---|
committer | GitHub | 2022-04-09 23:23:06 +0000 |
commit | 494306ad7ae8ffb45d4d7d906528b64812eee3a5 (patch) | |
tree | cf2315f7e36c1e57012be39038959800c283db95 /runtime/queries/erb | |
parent | 78b16009433041059597cc6ccea28c17254483b7 (diff) |
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.
Diffstat (limited to 'runtime/queries/erb')
-rw-r--r-- | runtime/queries/erb/highlights.scm | 1 | ||||
-rw-r--r-- | runtime/queries/erb/injections.scm | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/runtime/queries/erb/highlights.scm b/runtime/queries/erb/highlights.scm new file mode 100644 index 00000000..38830615 --- /dev/null +++ b/runtime/queries/erb/highlights.scm @@ -0,0 +1 @@ +; inherits: ejs diff --git a/runtime/queries/erb/injections.scm b/runtime/queries/erb/injections.scm new file mode 100644 index 00000000..2824f7a0 --- /dev/null +++ b/runtime/queries/erb/injections.scm @@ -0,0 +1,7 @@ +((content) @injection.content + (#set! injection.language "html") + (#set! injection.combined)) + +((code) @injection.content + (#set! injection.language "ruby") + (#set! injection.combined)) |