aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/vim/injections.scm
blob: 50f0190112d7ad509f4582fa7cfd76cbb495388a (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
37
38
39
40
41
42
43
44
45
46
47
48
((lua_statement (script (body) @injection.content))
 (#set! injection.language "lua"))

((lua_statement (chunk) @injection.content)
 (#set! injection.language "lua"))

((ruby_statement (script (body) @injection.content))
 (#set! injection.language "ruby"))

((ruby_statement (chunk) @injection.content)
 (#set! injection.language "ruby"))

((python_statement (script (body) @injection.content))
 (#set! injection.language "python"))

((python_statement (chunk) @injection.content)
 (#set! injection.language "python"))

;; If we support perl at some point...
;; ((perl_statement (script (body) @injection.content))
;;  (#set! injection.language "perl"))
;; ((perl_statement (chunk) @injection.content)
;;  (#set! injection.language "perl"))

((autocmd_statement (pattern) @injection.content)
 (#set! injection.language "regex"))

((set_item
   option: (option_name) @_option
   value: (set_value) @injection.content)
  (#any-of? @_option
    "includeexpr" "inex"
    "printexpr" "pexpr"
    "formatexpr" "fex"
    "indentexpr" "inde"
    "foldtext" "fdt"
    "foldexpr" "fde"
    "diffexpr" "dex"
    "patchexpr" "pex"
    "charconvert" "ccv")
  (#set! injection.language "vim"))


; ((comment) @injection.content
;  (#set! injection.language "comment"))

; ((line_continuation_comment) @injection.content
;  (#set! injection.language "comment"))