1
0
mirror of https://github.com/helix-editor/helix synced 2026-05-04 05:30:40 +02:00
Files
helix/runtime/queries/haskell-literate/injections.scm
Laurent P. René de Cotret baaa4f30d4 Support for Literate Haskell (#14659)
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"))