forked from facelessuser/HexViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHex.tmLanguage
executable file
·115 lines (115 loc) · 2.48 KB
/
Hex.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?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>
<string>hex</string>
</array>
<key>keyEquivalent</key>
<string>^~H</string>
<key>name</key>
<string>Hex</string>
<key>patterns</key>
<array>
<dict>
<key>begin</key>
<string>^([a-f\d]{8}\:)([\s]{2})</string>
<key>beginCaptures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>keyword.address.hex</string>
</dict>
<key>2</key>
<dict>
<key>name</key>
<string>dump.buffer-start.hex</string>
</dict>
</dict>
<key>end</key>
<string>[\s]{2}(\:)</string>
<key>endCaptures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>keyword.ascii-start.hex</string>
</dict>
<key>0</key>
<dict>
<key>name</key>
<string>dump.buffer-end.hex</string>
</dict>
</dict>
<key>name</key>
<string>dump.hex</string>
<key>patterns</key>
<array>
<dict>
<key>begin</key>
<string>[\da-f]{1}</string>
<key>beginCaptures</key>
<dict>
<key>0</key>
<dict>
<key>name</key>
<string>raw.nibble.upper.hex</string>
</dict>
</dict>
<key>end</key>
<string>[\da-f]{1}</string>
<key>endCaptures</key>
<dict>
<key>0</key>
<dict>
<key>name</key>
<string>raw.nibble.lower.hex</string>
</dict>
</dict>
<key>name</key>
<string>raw.byte.hex</string>
<key>patterns</key>
<array>
<dict>
<key>match</key>
<string>[\w\W]</string>
<key>name</key>
<string>invalid.illegal.expected-nibble.hex</string>
</dict>
</array>
</dict>
<dict>
<key>match</key>
<string>[\s]{1}</string>
<key>name</key>
<string>raw.punctuation.hex</string>
</dict>
<dict>
<key>match</key>
<string>[\w\W]{1}\s*</string>
<key>name</key>
<string>invalid.illegal.character.hex</string>
</dict>
</array>
</dict>
<dict>
<key>match</key>
<string>^[\w\W]*$</string>
<key>name</key>
<string>invalid.malformed-line.hex</string>
</dict>
<dict>
<key>match</key>
<string>[\w\W]*$</string>
<key>name</key>
<string>comment.ascii.hex</string>
</dict>
</array>
<key>scopeName</key>
<string>source.hex</string>
<key>uuid</key>
<string>DB774570-03E8-11E1-92ED-22814824019B</string>
</dict>
</plist>