1
0
mirror of https://github.com/helix-editor/helix synced 2026-03-27 15:31:58 +01:00
helix/runtime/queries/styx/injections.scm
Kristoffer Plagborg Bak Sørensen 712a4a660c
Add styx language (#15226)
[styx](https://styx.bearcove.eu/) is a document language.

tree-sitter queries are based on the ones provided by
the language project itself and then modified and extended to work with Helix.
2026-03-14 13:43:23 -05:00

10 lines
355 B
Scheme

([(line_comment) (doc_comment)] @injection.content
(#set! injection.language "comment"))
; Heredocs can specify a language: <<SQL,sql
; The heredoc_lang node captures the language name (e.g., "sql")
; The heredoc_content node contains the actual content to highlight
(heredoc
(heredoc_lang) @injection.language
(heredoc_content) @injection.content)