-
Notifications
You must be signed in to change notification settings - Fork 0
/
eucleia-formatting.plist
105 lines (96 loc) · 2.68 KB
/
eucleia-formatting.plist
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
<?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">
<!-- Z80 Assembler BBEdit Codeless Language Module -->
<dict>
<!-- You must identify the plist as a CLM: -->
<key>BBEditDocumentType</key>
<string>CodelessLanguageModule</string>
<!-- You must identify your language: -->
<key>BBLMLanguageDisplayName</key>
<string>Eucleia</string>
<key>BBLMLanguageCode</key>
<string>EK</string>
<!-- Not required, but there’s not much point to
a language module if it doesn’t color syntax: -->
<key>BBLMColorsSyntax</key>
<true/>
<key>BBLMIsCaseSensitive</key>
<false/>
<key>BBLMSuffixMap</key>
<array>
<dict>
<key>BBLMLanguageSuffix</key>
<string>.ek</string>
</dict>
</array>
<!-- Specify some keywords. This isn’t required, either,
but it provides something to color: -->
<key>BBLMKeywordList</key>
<array>
<string>array</string>
<string>do</string>
<string>else</string>
<string>for</string>
<string>func</string>
<string>if</string>
<string>string</string>
<string>int</string>
<string>float</string>
<string>bool</string>
<string>while</string>
<string>true</string>
<string>false</string>
<string>return</string>
<string>break</string>
<!-- Pre-processor Directives -->
</array>
<!-- Specify a comment-out string: -->
<key>BBLMCommentLineDefault</key>
<string>//</string>
<!-- You must specify the character set for
keywords and identifiers. Substitute your own: -->
<key>Language Features</key>
<dict>
<key>Identifier and Keyword Character Class</key>
<string>#%@<>_.A-Za-z0-9</string>
<key>Prefix for Functions</key>
<string>func</string>
<key>Open Parameter Lists</key>
<string></string>
<key>Close Parameter Lists</key>
<string></string>
<key>Terminator for Prototypes 1</key>
<string></string>
<key>Terminator for Prototypes 2</key>
<string></string>
<key>Open Statement Blocks</key>
<string>{</string>
<key>Close Statement Blocks</key>
<string>}</string>
<key>Open Block Comments</key>
<string></string>
<key>Close Block Comments</key>
<string></string>
<key>Open Line Comments</key>
<string>//</string>
<key>Open Strings 1</key>
<string>"</string>
<key>Close Strings 1</key>
<string>"</string>
<key>Escape Char in Strings 1</key>
<string></string>
<key>End-of-line Ends Strings 1</key>
<true/>
<key>Open Strings 2</key>
<string></string>
<key>Close Strings 2</key>
<string></string>
<key>Escape Char in Strings 2</key>
<string></string>
<key>End-of-line Ends Strings 2</key>
<true/>
</dict>
</dict>
</plist>