-
Notifications
You must be signed in to change notification settings - Fork 0
/
GitBlame.tmLanguage
51 lines (51 loc) · 1.16 KB
/
GitBlame.tmLanguage
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>fileTypes</key>
<array/>
<key>name</key>
<string>Git Blame</string>
<key>patterns</key>
<array>
<dict>
<key>captures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>constant.hash.git-blame</string>
</dict>
<key>2</key>
<dict>
<key>name</key>
<string>string.author.git-blame</string>
</dict>
<key>3</key>
<dict>
<key>name</key>
<string>string.date.git-blame</string>
</dict>
<key>4</key>
<dict>
<key>name</key>
<string>variable.linenumber.git-blame</string>
</dict>
<key>5</key>
<dict>
<key>name</key>
<string>text.line.code.git-blame</string>
</dict>
</dict>
<key>comment</key>
<string>Blame line.</string>
<key>match</key>
<string>^([0-9a-z]+) +\((.*) +(\d{4}-\d{2}-\d{2}) +(\d+)\)(.*)$</string>
</dict>
</array>
<key>scopeName</key>
<string>text.git-blame</string>
<key>uuid</key>
<string>93994a48-2624-44ac-83dd-898a73d155d9</string>
</dict>
</plist>