-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminiscript-language-module.plist
More file actions
129 lines (129 loc) · 2.97 KB
/
miniscript-language-module.plist
File metadata and controls
129 lines (129 loc) · 2.97 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!-- %SHILL_UPDATE_NOTICE% -->
<plist version="1.0">
<dict>
<key>BBEditDocumentType</key>
<string>CodelessLanguageModule</string>
<key>BBLMColorsSyntax</key>
<true/>
<key>BBLMIsCaseSensitive</key>
<true/>
<key>BBLMKeywordList</key>
<array>
<string>break</string>
<string>continue</string>
<string>else</string>
<string>end</string>
<string>for</string>
<string>function</string>
<string>if</string>
<string>in</string>
<string>new</string>
<string>null</string>
<string>then</string>
<string>repeat</string>
<string>return</string>
<string>while</string>
<string>and</string>
<string>or</string>
<string>not</string>
<string>true</string>
<string>false</string>
</array>
<key>BBLMLanguageCode</key>
<string>MScp</string>
<key>BBLMLanguageDisplayName</key>
<string>MiniScript</string>
<key>BBLMScansFunctions</key>
<true/>
<key>BBLMSuffixMap</key>
<array>
<dict>
<key>BBLMLanguageSuffix</key>
<string>.ms</string>
</dict>
<dict>
<key>BBLMLanguageSuffix</key>
<string>.mscp</string>
</dict>
<dict>
<key>BBLMLanguageSuffix</key>
<string>.miniscript</string>
</dict>
</array>
<key>BBLMCommentLineDefault</key>
<string>//</string>
<key>Language Features</key>
<dict>
<key>Close Block Comments</key>
<string></string>
<key>Close Parameter Lists</key>
<string>)</string>
<key>Close Statement Blocks</key>
<string>end</string>
<key>Close Strings 1</key>
<string>"</string>
<key>End-of-line Ends Strings 1</key>
<false/>
<key>Escape Char in Strings 1</key>
<string></string>
<key>Escape Char in Strings 2</key>
<string></string>
<key>Identifier and Keyword Characters</key>
<string>0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz_</string>
<key>Open Block Comments</key>
<string></string>
<key>Open Line Comments</key>
<string>//</string>
<key>Open Parameter Lists</key>
<string>(</string>
<key>Open Statement Blocks</key>
<array>
<string>if</string>
<string>while</string>
<string>for</string>
<string>function</string>
</array>
<key>Open Strings 1</key>
<string>"</string>
<key>Prefix for Functions</key>
<string></string>
<key>Prefix for Procedures</key>
<string>state</string>
<key>Terminator for Prototypes 1</key>
<string></string>
<key>Terminator for Prototypes 2</key>
<string></string>
<key>Function Pattern</key>
<string><![CDATA[
(?x:
^(?P<function>
(?P<function_name>[a-zA-Z0-9_\.]+)
(?:\ *)=(?:\ *)function
(?s:.+?)
^end\ function
)
)
]]></string>
<key>Comment Pattern</key>
<string><![CDATA[
(?x:
(//.*?$)
)
]]></string>
<key>String Pattern</key>
<string><![CDATA[
(?x:
(".*?")
)
]]></string>
<key>Skip Pattern</key>
<string><![CDATA[
(?x:
(?P>comment) |
(?P>string)
)]]></string>
</dict>
</dict>
</plist>