This repository was archived by the owner on Jan 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVCL.plist
More file actions
105 lines (84 loc) · 2.69 KB
/
VCL.plist
File metadata and controls
105 lines (84 loc) · 2.69 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
<?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">
<dict>
<key>BBEditDocumentType</key>
<string>CodelessLanguageModule</string>
<key>BBLMLanguageCode</key>
<string>vVCL</string>
<key>BBLMLanguageDisplayName</key>
<string>Varnish Configuration Language</string>
<key>BBLMSuffixMap</key>
<array>
<dict>
<key>BBLMLanguageSuffix</key>
<string>.vcl</string>
</dict>
</array>
<key>BBLMPreferredFilenameExtension</key>
<string>.vcl</string>
<key>BBLMColorsSyntax</key> <true/>
<key>BBLMIsCaseSensitive</key> <false/>
<key>BBLMCommentLineDefault</key>
<string>#</string>
<key>BBLMCommentPrefixDefault</key>
<string>/* </string>
<key>BBLMCommentSuffixDefault</key>
<string> */</string>
<key>BBLMKeywordList</key>
<array>
<string>acl</string>
<string>backend</string>
<string>call</string>
<string>director</string>
<string>else</string>
<string>error</string>
<string>hash_data</string>
<string>if</string>
<string>include</string>
<string>purge_url</string>
<string>regsub</string>
<string>regsuball</string>
<string>remove</string>
<string>restart</string>
<string>return</string>
<string>set</string>
<string>sub</string>
<string>synthetic</string>
<string>unset</string>
</array>
<key>BBLMScansFunctions</key> <true/>
<key>Language Features</key>
<dict>
<key>Identifier and Keyword Characters</key>
<string>ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_</string>
<key>Open Block Comments</key>
<string>/*</string>
<key>Close Block Comments</key>
<string>*/</string>
<key>Open Line Comments</key>
<string>#</string>
<key>Prefix for Functions</key>
<string>sub</string>
<key>Prefix for Procedures</key>
<string>sub</string>
<key>Open Parameter Lists</key>
<string>(</string>
<key>Close Parameter Lists</key>
<string>)</string>
<key>Open Statement Blocks</key>
<string>{</string>
<key>Close Statement Blocks</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> <true />
<key>Open Strings 2</key> <string>{"</string>
<key>Close Strings 2</key> <string>"}</string>
<key>Escape Char in Strings 1</key> <string>\</string>
<key>End-of-line Ends Strings 1</key> <false />
</dict>
</dict>
</plist>