-
Notifications
You must be signed in to change notification settings - Fork 1
/
Elm.plist
104 lines (101 loc) · 2.86 KB
/
Elm.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
<?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">
<plist version="1.0">
<dict>
<key>BBEditDocumentType</key>
<string>CodelessLanguageModule</string>
<key>BBLMColorsSyntax</key>
<true/>
<key>BBLMIsCaseSensitive</key>
<true/>
<key>BBLMLanguageCode</key>
<string>Elml</string>
<key>BBLMLanguageDisplayName</key>
<string>Elm</string>
<key>BBLMSuffixMap</key>
<array>
<dict>
<key>BBLMLanguageSuffix</key>
<string>.elm</string>
<key>BBLMPreferredFilenameExtension</key>
<string>.elm</string>
</dict>
</array>
<key>BBLMCommentLineDefault</key>
<string>-- </string>
<key>BBLMCommentPrefixDefault</key>
<string>{-</string>
<key>BBLMCommentSuffixDefault</key>
<string>-}</string>
<key>Open Block Comments</key>
<string>{-</string>
<key>Open Line Comments</key>
<string>-- </string>
<key>Close Block Comments</key>
<string>-}</string>
<key>BBLMScansFunctions</key>
<true/>
<key>Function Pattern</key>
<string><![CDATA[
(?x: # Verbose
(?P<function>
(?: # Note: type sig expected first!
(?P<function_name> ^\w+ ) # name
\s+ : \s+ # start of types
(?:
[A-Z][a-z]+ # Type, e.g. String
(?: \s+ [a-z]+ )? # little type, e.g. List a
)
(?: # extra args
\s+
(?: \-\>\s+ )? # e.g. -> Maybe
[A-Z][a-z]+ # same as above with Type
(?: \s+ [a-z]+ )? # and little type
)*$ # repeat till end
)\n
(?s) # single line (dotall) on
^.+?\n$ # method body
(?-s) # single line (dotall) off
(?=\n$\n|\Z) # 2 line breaks or eof follows
)
)]]>
</string>
<key>BBLMKeywordList</key>
<array>
<string>module</string>
<string>import</string>
<string>where</string>
<string>class</string>
<string>instance</string>
<string>type</string>
<string>alias</string>
<string>newtype</string>
<string>data</string>
<string>do</string>
<string>case</string>
<string>of</string>
<string>let</string>
<string>in</string>
<string>if</string>
<string>then</string>
<string>else</string>
</array>
<key>Language Features</key>
<dict>
<key>Close Strings 1</key>
<string>"</string>
<key>Close Strings 2</key>
<string>'</string>
<key>Escape Char in Strings 1</key>
<string>\</string>
<key>Escape Char in Strings 2</key>
<string>\</string>
<key>Identifier and Keyword Character Class</key>
<string>a-zA-Z0-9_</string>
<key>Open Strings 1</key>
<string>"</string>
<key>Open Strings 2</key>
<string>'</string>
</dict>
</dict>
</plist>