1
0
mirror of https://github.com/helix-editor/helix synced 2026-03-07 08:41:40 +01:00
helix/runtime/queries/haskell-literate/injections.scm
2025-11-11 08:19:40 -06:00

15 lines
429 B
Scheme

; Inject Haskell parser into bird-style code lines
((bird_line
(haskell_code) @injection.content)
(#set! injection.language "haskell"))
; Inject Haskell parser into LaTeX code blocks
((latex_code_line
(haskell_code) @injection.content)
(#set! injection.language "haskell"))
; Inject Haskell parser into Markdown code blocks
((markdown_code_line
(haskell_code) @injection.content)
(#set! injection.language "haskell"))