Skip to content

Commit

Permalink
Merge pull request #3 from ideabucket/master
Browse files Browse the repository at this point in the history
simple syntax colouring for commit messages
  • Loading branch information
rwilcox committed Nov 9, 2014
2 parents 5484d74 + 3e04934 commit 9c39eb4
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions Contents/Language Modules/GitCommit.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?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">
<!-- Basic highlighting for git commit messages -->

<dict>
<key>BBEditDocumentType</key>
<string>CodelessLanguageModule</string>

<key>BBLMLanguageCode</key>
<string>GMsg</string>

<key>BBLMColorsSyntax</key>
<true/>

<key>BBLMIsCaseSensitive</key>
<false/>

<key>BBLMLanguageDisplayName</key>
<string>Git Commit Message</string>

<key>BBLMScansFunctions</key>
<false/>

<key>BBLMCommentLineDefault</key>
<string># </string>

<key>BBLMFileNamesToMatch</key>
<array>
<string>COMMIT_EDITMSG</string>
</array>
<key>BBLMKeywordList</key>
<array>
<string>git</string>
<!-- no actual keywords here, mostly to silence BB warnings to console -->
</array>

<key>Language Features</key>
<dict>
<key>Open Line Comments</key> <string>#</string>
</dict>

</dict>
</plist>

0 comments on commit 9c39eb4

Please sign in to comment.