Skip to content

Commit

Permalink
feat: Syntax highlighting for Astro files (helix-editor#3829)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbenja authored and jdrst committed Sep 13, 2022
1 parent c2e376c commit 98918a8
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions book/src/generated/lang-support.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| Language | Syntax Highlighting | Treesitter Textobjects | Auto Indent | Default LSP |
| --- | --- | --- | --- | --- |
| astro || | | |
| awk ||| | `awk-language-server` |
| bash || | | `bash-language-server` |
| beancount || | | |
Expand Down
12 changes: 12 additions & 0 deletions languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1754,3 +1754,15 @@ language-server = { command = "jsonnet-language-server", args= ["-t", "--lint"]
[[grammar]]
name = "jsonnet"
source = { git = "https://github.com/sourcegraph/tree-sitter-jsonnet", rev = "0475a5017ad7dc84845d1d33187f2321abcb261d" }

[[language]]
name = "astro"
scope = "source.astro"
injection-regex = "astro"
file-types = ["astro"]
roots = []
indent = { tab-width = 2, unit = " " }

[[grammar]]
name = "astro"
source = { git = "https://github.com/virchau13/tree-sitter-astro", rev = "5f5c3e73c45967df9aa42f861fad2d77cd4e0900" }
3 changes: 3 additions & 0 deletions runtime/queries/astro/highlights.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
; inherits: html

["---"] @punctuation.delimiter
9 changes: 9 additions & 0 deletions runtime/queries/astro/injections.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
; inherits: html

((frontmatter
(raw_text) @injection.content)
(#set! injection.language "typescript"))

((interpolation
(raw_text) @injection.content)
(#set! injection.language "tsx"))

0 comments on commit 98918a8

Please sign in to comment.