Skip to content

Instantly share code, notes, and snippets.

@norbajunior
Forked from JeanMertz/syntax_highlighting.py
Created December 14, 2011 13:05
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save norbajunior/1476493 to your computer and use it in GitHub Desktop.
Save norbajunior/1476493 to your computer and use it in GitHub Desktop.
Ruby on Rails syntax highlight switcher for Sublime Text 2
import sublime, sublime_plugin
import os
class DetectFileTypeCommand(sublime_plugin.EventListener):
""" Detects current file type if the file's extension isn't conclusive """
""" Modified for Ruby on Rails and Sublime Text 2 """
""" Original pastie here: http://pastie.org/private/kz8gtts0cjcvkec0d4quqa """
def on_load(self, view):
filename = view.file_name()
if not filename: # buffer has never been saved
return
name = os.path.basename(filename.lower())
if name[-8:] == "_spec.rb":
set_syntax(view, "Rspec", "User/rspec")
elif name == "factories.rb":
set_syntax(view, "Rspec", "User/rspec")
elif name == "gemfile":
set_syntax(view, "Ruby on Rails", "Rails")
elif name[-3] == "erb"
set_sintax(view, "HTML (Rails)", "Rails")
elif name[-2:] == "rb":
set_syntax(view, "Ruby on Rails", "Rails")
def set_syntax(view, syntax, path=None):
if path is None:
path = syntax
view.settings().set('syntax', 'Packages/'+ path + '/' + syntax + '.tmLanguage')
print "Switched syntax to: " + syntax
@anderslemke
Copy link

Thanks for this.
Just wanted to let you know that there's a typo in there => set_sintax

@jaredatron
Copy link

How does one use this?

@abitdodgy
Copy link

This SO post has instructions: http://stackoverflow.com/q/8607683/276959

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment