|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
| 3 | +<plist version="1.1"> |
| 4 | + |
| 5 | +<!-- |
| 6 | + AppleScript.plist |
| 7 | + |
| 8 | + A simplified version of AppleSript that isn't coded and can't be built. |
| 9 | + |
| 10 | + Copyright Anthony Arblaster 2023 |
| 11 | + Web: codebyanthony.com |
| 12 | + Mastodon: https://mastodonapp.uk/@aarblaster |
| 13 | + GitHub: https://github.com/aarblaster |
| 14 | + |
| 15 | + Huge thanks to team BBEdit. |
| 16 | +--> |
| 17 | + |
| 18 | + |
| 19 | + |
| 20 | + |
| 21 | + |
| 22 | + |
| 23 | +<dict> |
| 24 | + <!-- Some required stuff. Inclyding a unique ID. --> |
| 25 | + <key>BBEditDocumentType</key> |
| 26 | + <string>CodelessLanguageModule</string> |
| 27 | + <key>BBLMLanguageDisplayName</key> |
| 28 | + <string>AppleScript BASIC</string> |
| 29 | + <key>BBLMLanguageCode</key> |
| 30 | + <string>aplB</string> |
| 31 | + |
| 32 | + |
| 33 | + <!-- File extension to apply to. --> |
| 34 | + <key>BBLMSuffixMap</key> |
| 35 | + <array> |
| 36 | + <dict> |
| 37 | + <key>BBLMLanguageSuffix</key> |
| 38 | + <string>.scpt</string> |
| 39 | + </dict> |
| 40 | + </array> |
| 41 | + <key>BBLMPreferredFilenameExtension</key> |
| 42 | + <string>scpt</string> |
| 43 | + |
| 44 | + <!-- Spell Check? --> |
| 45 | + <key>BBLMCanSpellCheckCodeRuns</key> |
| 46 | + <true/> |
| 47 | + |
| 48 | + <!-- Should syntax be coloured?, |
| 49 | + Obviously the answer is yes. --> |
| 50 | + <key>BBLMColorsSyntax</key> |
| 51 | + <true/> |
| 52 | + |
| 53 | + <!-- Keywords to be coloured. --> |
| 54 | + <key>BBLMKeywordList</key> |
| 55 | + <array> |
| 56 | + <string>if</string> |
| 57 | + <string>then</string> |
| 58 | + <string>else</string> |
| 59 | + <string>end</string> |
| 60 | + <string>tell</string> |
| 61 | + <string>end tell</string> |
| 62 | + <string>application</string> |
| 63 | + <string>true</string> |
| 64 | + <string>false</string> |
| 65 | + <string>activate</string> |
| 66 | + |
| 67 | + <!-- Add more keywords as needed --> |
| 68 | + </array> |
| 69 | + |
| 70 | + <!-- Comment line--> |
| 71 | + <key>BBLMCommentLineDefault</key> |
| 72 | + <string>--</string> |
| 73 | + |
| 74 | + <!-- Features of the language to use --> |
| 75 | + <key>Language Features</key> |
| 76 | + <dict> |
| 77 | + <key>Identifier and Keyword Character Class</key> |
| 78 | + <string>A-Za-z0-9_</string> |
| 79 | + <key>Open Line Comments</key> |
| 80 | + <string>--</string> |
| 81 | + <key>Open Strings 1</key> |
| 82 | + <string>"</string> |
| 83 | + <key>Close Strings 1</key> |
| 84 | + <string>"</string> |
| 85 | + <key>Escape Char in Strings 1</key> |
| 86 | + <string>\</string> |
| 87 | + <key>End-of-line Ends Strings 1</key> |
| 88 | + <false/> |
| 89 | + <key>Open Statement Blocks</key> |
| 90 | + <string>{</string> |
| 91 | + <key>Close Statement Blocks</key> |
| 92 | + <string>}</string> |
| 93 | + <key>Open Parameter Lists</key> |
| 94 | + <string>(</string> |
| 95 | + <key>Close Parameter Lists</key> |
| 96 | + <string>)</string> |
| 97 | + </dict> |
| 98 | +</dict> |
| 99 | +</plist> |
0 commit comments