-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcmake.plist.in
81 lines (81 loc) · 2.34 KB
/
cmake.plist.in
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
<?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">
<!-- BBEdit codeless language module for CMake @CMAKE_VERSION@ -->
<!-- See https://github.com/sakra/CMakeBBLM -->
<dict>
<key>BBEditDocumentType</key>
<string>CodelessLanguageModule</string>
<key>BBLMLanguageDisplayName</key>
<string>CMake</string>
<key>BBLMLanguageCode</key>
<string>CMAK</string>
<key>BBLMSuffixMap</key>
<array>
<dict>
<key>BBLMLanguageSuffix</key>
<string>.cmake</string>
</dict>
<dict>
<key>BBLMLanguageSuffix</key>
<string>.ctest</string>
</dict>
</array>
<key>BBLMFileNamesToMatch</key>
<array>
<string>CMakeLists.txt</string>
<string>*.cmake.in</string>
<string>*.ctest.in</string>
</array>
<key>BBLMPreferredFilenameExtension</key>
<string>txt</string>
<key>BBLMSupportsTextCompletion</key>
<true/>
<key>BBLMCanSpellCheckCodeRuns</key>
<false/>
<key>BBLMReferenceSearchURLTemplate</key>
<string>@BBLMReferenceSearchURLTemplate@</string>
<key>BBLMIsCaseSensitive</key>
<false/>
<key>BBLMScansFunctions</key>
<true/>
<key>BBLMColorsSyntax</key>
<true/>
<key>BBLMKeywordList</key>
<array>
@BBLMKeywordList@
</array>
<key>BBLMPredefinedNameList</key>
<array>
@BBLMPredefinedNameList@
</array>
<key>BBLMCommentLineDefault</key>
<string>#</string>
<key>Language Features</key>
<dict>
<key>Identifier and Keyword Character Class</key>
<string>a-z_A-Z0-9_</string>
<key>Comment Pattern</key>
<string><![CDATA[(?x:
(?s:\#\[(?P<bracket_comment>\=*)\[.*?\](?P=bracket_comment)\]) |
(\#.*$)
)]]></string>
<key>String Pattern</key>
<string><![CDATA[(?x:
"(?>\\.|[^"\\])*" |
(?<!\#)(?s:\[(?P<bracket_string>\=*)\[.*?\](?P=bracket_string)\])
)]]></string>
<key>Function Pattern</key>
<string><![CDATA[(?x:
(?P<function>
^\s*(?P<function_or_macro>function|macro)\s*\(\s*
(?P<function_name>\w+)
(?s:.+?)
(?P=function_or_macro)\s*\(\w*\)
)
)]]></string>
<key>Skip Pattern</key>
<string><![CDATA[(?x:(?P>string)|(?P>comment))]]></string>
</dict>
</dict>
</plist>