mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Add support for the Vento template language (#12147)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
parent
44c1d51d8c
commit
548f04fe26
4 changed files with 31 additions and 0 deletions
|
@ -225,6 +225,7 @@
|
||||||
| uxntal | ✓ | | | |
|
| uxntal | ✓ | | | |
|
||||||
| v | ✓ | ✓ | ✓ | `v-analyzer` |
|
| v | ✓ | ✓ | ✓ | `v-analyzer` |
|
||||||
| vala | ✓ | ✓ | | `vala-language-server` |
|
| vala | ✓ | ✓ | | `vala-language-server` |
|
||||||
|
| vento | ✓ | | | |
|
||||||
| verilog | ✓ | ✓ | | `svlangserver` |
|
| verilog | ✓ | ✓ | | `svlangserver` |
|
||||||
| vhdl | ✓ | | | `vhdl_ls` |
|
| vhdl | ✓ | | | `vhdl_ls` |
|
||||||
| vhs | ✓ | | | |
|
| vhs | ✓ | | | |
|
||||||
|
|
|
@ -3960,3 +3960,14 @@ language-servers = ["ada-gpr-language-server"]
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "gpr"
|
name = "gpr"
|
||||||
source = { git = "https://github.com/brownts/tree-sitter-gpr", rev = "cea857d3c18d1385d1f5b66cd09ea1e44173945c" }
|
source = { git = "https://github.com/brownts/tree-sitter-gpr", rev = "cea857d3c18d1385d1f5b66cd09ea1e44173945c" }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "vento"
|
||||||
|
scope = "text.html.vto"
|
||||||
|
file-types = ["vto"]
|
||||||
|
block-comment-tokens = { start = "{{#", end = "#}}" }
|
||||||
|
indent = { tab-width = 4, unit = " " }
|
||||||
|
|
||||||
|
[[grammar]]
|
||||||
|
name = "vento"
|
||||||
|
source = { git = "https://github.com/ventojs/tree-sitter-vento", rev = "3321077d7446c1b3b017c294fd56ce028ed817fe" }
|
||||||
|
|
13
runtime/queries/vento/highlights.scm
Normal file
13
runtime/queries/vento/highlights.scm
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
(comment) @comment
|
||||||
|
|
||||||
|
(keyword) @keyword
|
||||||
|
|
||||||
|
(tag
|
||||||
|
[
|
||||||
|
"{{"
|
||||||
|
"{{-"
|
||||||
|
"}}"
|
||||||
|
"-}}"
|
||||||
|
] @punctuation.bracket)
|
||||||
|
|
||||||
|
"|>" @operator
|
6
runtime/queries/vento/injections.scm
Normal file
6
runtime/queries/vento/injections.scm
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
((content) @injection.content
|
||||||
|
(#set! injection.language "html")
|
||||||
|
(#set! injection.combined))
|
||||||
|
|
||||||
|
((code) @injection.content
|
||||||
|
(#set! injection.language "javascript"))
|
Loading…
Add table
Add a link
Reference in a new issue