mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Co-authored-by: postsolar <120750161+postsolar@users.noreply.github.com> Co-authored-by: Iorvethe <58810330+Iorvethe@users.noreply.github.com> Co-authored-by: Blaž Hrastnik <blaz@mxxn.io> Co-authored-by: gabydd <gabydinnerdavid@gmail.com>
42 lines
904 B
Scheme
42 lines
904 B
Scheme
(
|
|
(source_file
|
|
(string_literal) @injection.content
|
|
.
|
|
[
|
|
(module_definition)
|
|
(function_definition)
|
|
(macro_definition)
|
|
(primitive_definition)
|
|
(abstract_definition)
|
|
(struct_definition)
|
|
(short_function_definition)
|
|
(assignment)
|
|
(const_statement)
|
|
])
|
|
(#set! injection.language "markdown"))
|
|
|
|
(
|
|
[
|
|
(line_comment)
|
|
(block_comment)
|
|
] @injection.content
|
|
(#set! injection.language "comment"))
|
|
|
|
(
|
|
[
|
|
(command_literal)
|
|
(prefixed_command_literal)
|
|
] @injection.content
|
|
(#set! injection.language "sh"))
|
|
|
|
(
|
|
(prefixed_string_literal
|
|
prefix: (identifier) @function.macro) @injection.content
|
|
(#eq? @function.macro "r")
|
|
(#set! injection.language "regex"))
|
|
|
|
(
|
|
(prefixed_string_literal
|
|
prefix: (identifier) @function.macro) @injection.content
|
|
(#eq? @function.macro "md")
|
|
(#set! injection.language "markdown"))
|