-
-
Save YesThatAllen/6bf0b3a152641a0f910eafde7dc6dd2d to your computer and use it in GitHub Desktop.
Super Simple Email Codeless Language Module for BBEdit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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 email (for example, what comes out of Mutt when you use "bbedit -w" as its editor) | |
| Feel free to customize. | |
| By Ryan Wilcox | |
| Requires BBEdit 8.0 or higher. To install, copy here: | |
| ~/Library/Application Support/BBEdit/Language Modules/ | |
| and relaunch BBEdit. | |
| --> | |
| <dict> | |
| <key>BBEditDocumentType</key> | |
| <string>CodelessLanguageModule</string> | |
| <key>BBLMLanguageCode</key> | |
| <string>eMai</string> | |
| <key>BBLMColorsSyntax</key> | |
| <true/> | |
| <key>BBLMIsCaseSensitive</key> | |
| <false/> | |
| <key>BBLMLanguageDisplayName</key> | |
| <string>Email</string> | |
| <key>BBLMScansFunctions</key> | |
| <false/> | |
| <key>Language Features</key> | |
| <dict> | |
| <key>Open Line Comments</key> | |
| <string>></string> | |
| <key>Identifier and Keyword Characters</key> | |
| <string>0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz:-</string> | |
| </dict> | |
| <key>BBLMKeywordList</key> | |
| <array> | |
| <string>From:</string> | |
| <string>To:</string> | |
| <string>Subject:</string> | |
| <string>Cc:</string> | |
| <string>BCC:</string> | |
| <string>Reply-To:</string> | |
| </array> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment