|
Revision 4608, 1.5 KB
(checked in by pmoura, 6 weeks ago)
|
|
Changed the file name extension of all config "*.config" files to "*.pl".
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 | <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
|---|
| 3 | <plist version="1.0"> |
|---|
| 4 | <dict> |
|---|
| 5 | <key>BBEditDocumentType</key> |
|---|
| 6 | <string>CodelessLanguageModule</string> |
|---|
| 7 | <key>BBLMColorsSyntax</key> |
|---|
| 8 | <true/> |
|---|
| 9 | <key>BBLMIsCaseSensitive</key> |
|---|
| 10 | <true/> |
|---|
| 11 | <key>BBLMKeywordList</key> |
|---|
| 12 | <array> |
|---|
| 13 | <string>:</string> |
|---|
| 14 | <string><<</string> |
|---|
| 15 | <string>::</string> |
|---|
| 16 | <string>^^</string> |
|---|
| 17 | <string>{</string> |
|---|
| 18 | <string>}</string> |
|---|
| 19 | </array> |
|---|
| 20 | <key>BBLMLanguageCode</key> |
|---|
| 21 | <string>LGT2</string> |
|---|
| 22 | <key>BBLMLanguageDisplayName</key> |
|---|
| 23 | <string>Logtalk</string> |
|---|
| 24 | <key>BBLMScansFunctions</key> |
|---|
| 25 | <false/> |
|---|
| 26 | <key>BBLMSuffixMap</key> |
|---|
| 27 | <array> |
|---|
| 28 | <dict> |
|---|
| 29 | <key>BBLMLanguageSuffix</key> |
|---|
| 30 | <string>.lgt</string> |
|---|
| 31 | </dict> |
|---|
| 32 | </array> |
|---|
| 33 | <key>Language Features</key> |
|---|
| 34 | <dict> |
|---|
| 35 | <key>Comment Pattern</key> |
|---|
| 36 | <string><![CDATA[(?x: |
|---|
| 37 | (?> % .* $ ) | |
|---|
| 38 | (?> /\* (?s:.*?) (?>\*/) ) |
|---|
| 39 | )]]></string> |
|---|
| 40 | |
|---|
| 41 | <key>Function Pattern</key> |
|---|
| 42 | <string><![CDATA[(?x: |
|---|
| 43 | :-\s(object|protocol|category)\([a-z][a-zA-Z_]+ |
|---|
| 44 | )]]></string> |
|---|
| 45 | |
|---|
| 46 | <key>String Pattern</key> |
|---|
| 47 | <string><![CDATA[(?x: |
|---|
| 48 | (?> " (?s: \\. | [^"] )*? (?> " ) ) | |
|---|
| 49 | (?> ' (?s: \\. | [^'] )*? (?> ' ) ) |
|---|
| 50 | )]]></string> |
|---|
| 51 | <!-- |
|---|
| 52 | <key>Skip Pattern</key> |
|---|
| 53 | <string><![CDATA[(?x: |
|---|
| 54 | <# GREP (regex) pattern for anything that should be ignored when scanning functions #> |
|---|
| 55 | )]]></string> |
|---|
| 56 | --> |
|---|
| 57 | <key>Identifier and Keyword Character Class</key> |
|---|
| 58 | <string><![CDATA[a-zA-Z0-9_:{}^]]></string> |
|---|
| 59 | </dict> |
|---|
| 60 | </dict> |
|---|
| 61 | </plist> |
|---|