Skip to content

Instantly share code, notes, and snippets.

@bcnice20
Created September 12, 2011 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bcnice20/1212295 to your computer and use it in GitHub Desktop.
Save bcnice20/1212295 to your computer and use it in GitHub Desktop.
Modified Sublime Text syntax Highlighter
import sublime, sublime_plugin
import os
class DetectFileTypeCommand(sublime_plugin.EventListener):
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[-2:] == "rb":
set_syntax(view, "Ruby on Rails", "Rails")
elif name[-7:] == "gemfile":
set_syntax(view, "Ruby", "Ruby")
elif name[-2:] == "ru":
set_syntax(view, "Ruby", "Ruby")
elif name[-9:] == "coffeekup":
set_syntax(view, "CoffeeKup", "CoffeeKup")
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment