-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenHAB cfg.plist
77 lines (73 loc) · 2.01 KB
/
openHAB cfg.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
<?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">
<!--
Codeless language model for BBEdit for openHAB configuration files (*.cfg).
Created initially by Maarten Meijer, [email protected]
http://www.eclipsophy.com/
Place in .../Application Support/BBEdit/Language Modules/ in
either ~/Library or ~/Dropbox/Application Support/BBEdit
Licensed according to terms of the Eclipse Public License (EPL)
https://www.eclipse.org/legal/epl-v10.html
2015 01 19 - Version 1.0
-->
<dict>
<key>BBEditDocumentType</key>
<string>CodelessLanguageModule</string>
<key>BBLMCanSpellCheckCodeRuns</key>
<false/>
<key>BBLMColorsSyntax</key>
<true/>
<key>BBLMCommentLineDefault</key>
<string>#</string>
<key>BBLMIsCaseSensitive</key>
<true/>
<key>BBLMKeywordList</key>
<array>
<string>:</string>
<string>=</string>
</array>
<key>BBLMLanguageCode</key>
<string>HABC</string>
<key>BBLMLanguageDisplayName</key>
<string>openHAB cfg</string>
<key>BBLMPredefinedNameList</key>
<array>
</array>
<key>BBLMPreferredFilenameExtension</key>
<array>
<dict>
<key>BBLMLanguageSuffix</key>
<string>cfg</string>
</dict>
</array>
<key>BBLMScansFunctions</key>
<false/>
<key>BBLMSuffixMap</key>
<array>
<dict>
<key>BBLMLanguageSuffix</key>
<string>.cfg</string>
</dict>
</array>
<key>BBLMSupportsTextCompletion</key>
<true/>
<key>Language Features</key>
<dict>
<key>Close Strings 1</key>
<string>"</string>
<key>Comment Pattern</key>
<string>(?x: (?> \# .* $ ) )</string>
<key>End-of-line Ends Strings 1</key>
<false/>
<key>Identifier and Keyword Character Class</key>
<string><![CDATA[0-9A-Z_a-z.]]></string>
<key>Open Line Comments</key>
<string>#</string>
<key>Open Strings 1</key>
<string>"</string>
<key>String Pattern</key>
<string>(?x: ("(\\"|[^"\r]|\\\r)*") | ('(\\'|[^'\r]|\\\r)*') |(?s:<<-?(?P<delim>\w+).*?(?P=delim) ) )</string>
</dict>
</dict>
</plist>