-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBunchLanguage.plist
92 lines (80 loc) · 2.25 KB
/
BunchLanguage.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
<?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.1">
<!--
BunchLanguage.plist
A way of viewing Bunch files that picks out some of the key words.
Just to make things easier to read.
Copyright Anthony Arblaster 2023
Web: codebyanthony.com
Mastodon: https://mastodonapp.uk/@aarblaster
GitHub: https://github.com/aarblaster/bbeditLanguageModules
MIT Licence
Huge thanks to team BBEdit.
Many thanks to Bret Terpstra for [Bunch](https://bunchapp.co)
-->
<dict>
<!-- Some required stuff. Including a unique ID. -->
<key>BBEditDocumentType</key>
<string>CodelessLanguageModule</string>
<key>BBLMLanguageDisplayName</key>
<string>Bunch</string>
<key>BBLMLanguageCode</key>
<string>bunh</string>
<!-- File Name to apply to -->
<key>BBLMSuffixMap</key>
<array>
<dict>
<key>BBLMLanguageSuffix</key>
<string>.bunch</string>
</dict>
</array>
<key>BBLMPreferredFilenameExtension</key>
<string>bunch</string>
<!-- Spell Check? -->
<key>BBLMCanSpellCheckCodeRuns</key>
<true/>
<!-- Should syntax be coloured?,
Obviously the answer is yes. -->
<key>BBLMColorsSyntax</key>
<true/>
<!-- Specify some keywords. This isn’t required, either,
but it provides something to color: -->
<key>BBLMKeywordList</key>
<array>
<string>___</string>
<string>if</string>
<string>else</string>
<string>end</string>
<string>do</string>
<string>for</string>
<string>return</string>
</array>
<key>BBLMCommentLineDefault</key>
<string>//</string>
<!-- Features of the language to use -->
<key>Language Features</key>
<dict>
<key>Identifier and Keyword Character Class</key>
<string>A-Za-z0-9_</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>
<false/>
<key>Open Statement Blocks</key>
<string>{</string>
<key>Close Statement Blocks</key>
<string>}</string>
<key>Open Parameter Lists</key>
<string>?[</string>
<key>Close Parameter Lists</key>
<string>]</string>
</dict>
</dict>
</plist>