37 lines
1.1 KiB
Scheme
37 lines
1.1 KiB
Scheme
; inherits: gotmpl
|
|
|
|
((text) @injection.content
|
|
(#set! injection.language "yaml")
|
|
(#set! injection.combined))
|
|
|
|
; {{ regexFind "[a-zA-Z][1-9]" "abcd1234" }}
|
|
(function_call
|
|
function: (identifier) @_function
|
|
arguments: (argument_list
|
|
.
|
|
(interpreted_string_literal) @injection.content)
|
|
(#any-of? @_function
|
|
"regexMatch" "mustRegexMatch" "regexFindAll" "mustRegexFinDall" "regexFind" "mustRegexFind"
|
|
"regexReplaceAll" "mustRegexReplaceAll" "regexReplaceAllLiteral" "mustRegexReplaceAllLiteral"
|
|
"regexSplit" "mustRegexSplit")
|
|
(#offset! @injection.content 0 1 0 -1)
|
|
(#set! injection.language "regex"))
|
|
|
|
(function_call
|
|
function: (identifier) @_function
|
|
arguments: (argument_list
|
|
.
|
|
(interpreted_string_literal) @injection.content)
|
|
(#any-of? @_function "fromYaml" "fromYamlArray")
|
|
(#offset! @injection.content 0 1 0 -1)
|
|
(#set! injection.language "yaml"))
|
|
|
|
(function_call
|
|
function: (identifier) @_function
|
|
arguments: (argument_list
|
|
.
|
|
(interpreted_string_literal) @injection.content)
|
|
(#any-of? @_function "fromJson" "fromJsonArray")
|
|
(#offset! @injection.content 0 1 0 -1)
|
|
(#set! injection.language "json"))
|