-
Notifications
You must be signed in to change notification settings - Fork 1
/
binsource.tmLanguage
51 lines (51 loc) · 1.17 KB
/
binsource.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>
<string>binsource</string>
</array>
<key>name</key>
<string>AGC Binsource</string>
<key>patterns</key>
<array>
<dict>
<key>comment</key>
<string>Comments</string>
<key>match</key>
<string>;.*</string>
<key>name</key>
<string>comment.binsource</string>
</dict>
<dict>
<key>comment</key>
<string>Operators</string>
<key>match</key>
<string>=</string>
<key>name</key>
<string>keyword.operator.binsource</string>
</dict>
<dict>
<key>comment</key>
<string>Keywords</string>
<key>match</key>
<string>BANK|NUMWORDS|CHECKWORDS</string>
<key>name</key>
<string>keyword.control.binsource</string>
</dict>
<dict>
<key>comment</key>
<string>Data</string>
<key>match</key>
<string>[0-7]+</string>
<key>name</key>
<string>constant.numeric.binsource</string>
</dict>
</array>
<key>scopeName</key>
<string>text.binsource</string>
<key>uuid</key>
<string>db18f887-e497-45a3-b211-03ae4202934e</string>
</dict>
</plist>