I started learning RoR today, and I switched to Sublime Text 2. What an awesome editor. It does a great job of highlighting Ruby code, but it does not highlight any code in my Gemfile.

Is there a way to get it to do that? I searched but found nothing specifically of use.

Edit: I found this Gist: https://gist.github.com/1476493 -- but it has no instructions and I neither know how to use it or if it would do what I want.

link|improve this question

you can probably tell the editor to apply ruby syntax highlighting. After all the gemfile is ruby syntax. but then, what do you put into your gemfile. you're not putting your whole rails app in there, are you? – three Dec 22 '11 at 17:42
@three, not at all! It's just that whenever I open the Gemfile, there's no syntax highlighting. I just found the option though. It dones't remember. I have to do it every time I open the file. :/ – Mohamad Dec 22 '11 at 17:49
feedback

2 Answers

up vote 20 down vote accepted

Three options:

1: Switch syntax manually (not preferred, but easy; no explanation required)
2: Add "Gemfile" to the list of Ruby-syntax files
3: Use the plugin you link to and create a package for it


2: Add "Gemfile" to list of Ruby-syntax files

  • Linux: ~/.config/sublime-text-2/Packages/Ruby/Ruby.tmLanguage
  • OS X: ~/Library/Application Support/Sublime Text 2/Packages/Ruby/Ruby.tmLanguage
  • Windows: %APPDATA%/Sublime Text 2/Packages/Ruby/Ruby.tmLanguage

It'll be obvious once you're in the file. It's an <array> element with Ruby-looking filenames. Add <string>Gemfile</string> and you're all set.

It's possible the setting could get overwritten on an upgrade; I'm not sure how that works with ST2--it may be cleaner to do it through code as in the snippet.

3: Using the snippet you linked to

More work (and the correction of one syntax error). You can either do it manually, by creating a directory in Packages (see above for location) or create an actual package and allow ST2 to install it.

I created a test package called "Syntax" and copied the snippet into it, restarted ST2, and opening a Gemfile worked as expected. The correction required an additional colon (new gist), nutshell:

elif name[-3] == "erb": # Needed a semi-colon here.
  set_sintax(view, "HTML (Rails)", "Rails")
link|improve this answer
1  
On OSX, it's ~/Library/Application Support/Sublime Text 2/Packages/Ruby/Ruby.tmLanguage. I dropped it in right below <string>Rakefile</string>. This has always bugged me too. Thanks to you; and to Mohamad for asking! – Unixmonkey Dec 22 '11 at 18:23
@Unixmonkey Oh, right; I was going to add that but got distracted. I think the python approach is more interesting, but it was more of a pain to get running (mostly because of that syntax error I didn't notice until I finally opened the console view :/ – Dave Newton Dec 22 '11 at 18:28
Thanks, @DaveNewton! If there's a way to make sure this doesn't get borked by updates to the Ruby bundle (i.e., moving it to a user-scoped settings file), I'd love to hear it. – Ben Kreeger Jan 15 at 23:03
@BenjaminKreeger I'm not sure if it's 100% borkless, but using the snippet in your own shouldn't be overwritten, at least. I'm not super-clear on how/where the packaging stuff works yet, though. – Dave Newton Jan 15 at 23:06
feedback

You can achieve this by copying the HTML.tmLanguage file in the User/ folder, this way it won't be overwritten by an update.

link|improve this answer
How does that affect syntax highlighting for a Gemfile? – Dave Newton Apr 12 at 1:23
feedback

Your Answer

 
or
required, but never shown

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