aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/queries/helm/injections.scm
blob: 2adf8743a775faa8f4888f251721846332b92ed1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
; 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"))