Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to configure Sublime Text 2 to open up *.handlebars.coffee files using HTML syntax highlighting as a default. I know that I can change the default syntax highlighting for all .coffee files, but is there a way to change the defaults for a file with two extensions?

I've seen this similar post but this does not quite answer my question: Set default syntax to different filetype in Sublime Text 2

share|improve this question

1 Answer

up vote 6 down vote accepted
+50

You can add handlebars.coffee to the fileTypes array in HTML.tmLanguage. After I did that, Sublime opened an example handlebars.coffee file as html syntax. Here's the relevant lines from my HTML.tmLanguage file:

<key>fileTypes</key>
<array>
    <string>handlebars.coffee</string>
    <string>html</string>
    <string>htm</string>
    etc.
</array>

You can access this file by opening the HTML folder under preferences > browse packages...

Make sure to save a new version of this file in your User preference folder. This will retain it through updates.

share|improve this answer
This works fantastically. Thanks! – Will Hitchcock Dec 10 '12 at 21:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.