mirror of
https://github.com/helix-editor/helix
synced 2026-03-07 08:41:40 +01:00
15 lines
429 B
Scheme
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"))
|