Created
January 27, 2022 14:31
-
-
Save DanTup/7af63749886ae513b911ec7fcab1a830 to your computer and use it in GitHub Desktop.
Basic Language Module for BBEdit to recognise Dart
This file contains 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//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>BBLMLanguageDisplayName</key> <string>Dart</string> | |
<key>BBLMLanguageCode</key> <string>Dart</string> | |
<key>BBLMSuffixMap</key> | |
<array> | |
<dict> | |
<key>BBLMLanguageSuffix</key> <string>.dart</string> | |
</dict> | |
</array> | |
<key>Language Features</key> | |
<dict></dict> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment