mirror of
https://github.com/helix-editor/helix
synced 2026-03-07 08:41:40 +01:00
17 lines
404 B
Scheme
17 lines
404 B
Scheme
; Bird track marker
|
|
(bird_line ">" @punctuation.special)
|
|
|
|
; LaTeX delimiters
|
|
(latex_begin) @keyword.directive
|
|
(latex_end) @keyword.directive
|
|
|
|
; Highlight LaTeX comments like comments
|
|
(latex_comment) @comment
|
|
|
|
; Markdown delimiters
|
|
(markdown_begin) @keyword.directive
|
|
(markdown_end) @keyword.directive
|
|
|
|
; Normal prose is not highlighted. Haskell code will be
|
|
; highlighted by the injected Haskell grammar
|