-
Notifications
You must be signed in to change notification settings - Fork 0
/
openHAB things.plist
103 lines (99 loc) · 2.76 KB
/
openHAB things.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
<?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 items files (*.items).
Created initially by Maarten Meijer, mjmeijer@eclipsophy.com
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>BBLMCommentPrefixDefault</key>
<string>/*</string>
<key>BBLMCommentSuffixDefault</key>
<string>*/</string>
<key>BBLMIsCaseSensitive</key>
<true/>
<key>BBLMKeywordList</key>
<array>
<string>Bridge</string>
<string>Thing</string>
<string>Channels</string>
<string>Type</string>
<string>State</string>
<string>Trigger</string>
</array>
<key>BBLMLanguageCode</key>
<string>HABt</string>
<key>BBLMLanguageDisplayName</key>
<string>openHAB things</string>
<key>BBLMPredefinedNameList</key>
<array>
<string>String</string>
<string>Number</string>
</array>
<key>BBLMPreferredFilenameExtension</key>
<array>
<dict>
<key>BBLMLanguageSuffix</key>
<string>thing</string>
</dict>
</array>
<key>BBLMScansFunctions</key>
<true/>
<key>BBLMSuffixMap</key>
<array>
<dict>
<key>BBLMLanguageSuffix</key>
<string>.things</string>
</dict>
</array>
<key>BBLMSupportsTextCompletion</key>
<true/>
<key>Language Features</key>
<dict>
<key>Prefix for Functions</key>
<string>Bridge</string>
<key>Prefix for Procedures</key>
<string>Thing</string>
<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>
<key>Close Block Comments</key>
<string>*/</string>
<key>Close Strings 1</key>
<string>"</string>
<key>Comment Pattern</key>
<string>(?x: (?> // .* $ ) | (?> /\* (?s:.*?) (?: \*/ | \z ) ) )</string>
<key>End-of-line Ends Strings 1</key>
<false/>
<key>Identifier and Keyword Character Class</key>
<string>0-9A-Z_a-z:</string>
<key>Open Block Comments</key>
<string>/*</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>