aboutsummaryrefslogtreecommitdiffstats
path: root/queries/vim/injections.scm
blob: 553ac5e6ad35a4e4c34b686b1fc8be629710ee18 (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
(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) @perl))
;; (perl_statement (chunk) @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"))