blob: 8b4d692826e31137ba412c679917af81a4668907 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
((comment) @injection.content
(#set! injection.language "comment"))
((variable
(name) @_name
value: (string) @injection.content)
(#any-of? @_name "cmd" "command" "textconv" "sendmailCmd" "sendmailcmd")
(#set! injection.language "bash"))
(section
(variable
(name) @_name
value: (string) @injection.content)
(#eq? @_name "tool")
(#set! injection.language "bash"))
(section
(section_header
(section_name) @_pager)
(variable
value: (string) @injection.content)
(#eq? @_pager "pager")
(#set! injection.language "bash"))
(section
(section_header
(section_name) @_interactive)
(variable
(name) @_name
value: (string) @injection.content)
(#eq? @_interactive "interactive")
(#any-of? @_name "diffFilter" "difffilter")
(#set! injection.language "bash"))
; https://github.com/git-lfs/git-lfs
; git lfs install
(section
(section_header
(section_name) @_filter
(subsection_name) @_lfs)
(variable
(name) @_name
value: (string) @injection.content)
(#eq? @_filter "filter")
(#eq? @_lfs "lfs")
(#any-of? @_name "smudge" "process" "clean")
(#set! injection.language "bash"))
(section
(section_header
(section_name) @_alias)
(variable
value: (string) @injection.content)
(#eq? @_alias "alias")
(#lua-match? @injection.content "^!")
(#offset! @injection.content 0 1 0 0)
(#set! injection.language "bash"))
(section
(section_header
(section_name) @_alias)
(variable
value: (string
"\""
"\"") @injection.content)
(#eq? @_alias "alias")
(#lua-match? @injection.content "^\"!")
(#offset! @injection.content 0 2 0 -1)
(#set! injection.language "bash"))
|