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.

is there a way to assign a keyboard shortcut to a specific color scheme in Sublime Text 2? In Emacs it's easy to define a function that toggles "night-mode" color scheme and assigns it to a keyboard shortcut, I was wondering if you can also do it in ST2.

Piotr

share|improve this question

4 Answers

up vote 8 down vote accepted

Try something like this, in your user key binding:

{
    "keys": ["YOUR_SHORTCUT"],
    "command": "set_setting",
    "args":
    {
        "setting": "color_scheme",
        "value": "Packages/Color Scheme - Default/Solarized (Light).tmTheme"
    }
}

Of course, change Packages/Color Scheme - Default/Solarized (Light).tmTheme to whatever theme you prefer.

If you want a toggle between two color schemes, you can create a plugin (Tools/New Plugin...):

import sublime, sublime_plugin

class ToggleColorSchemeCommand(sublime_plugin.TextCommand):
    def run(self, edit, **args):

        scheme1 = args["color_scheme_1"]
        scheme2 = args["color_scheme_2"]
        current_scheme = self.view.settings().get("color_scheme")

        new_scheme = scheme1 if current_scheme == scheme2 else scheme2
        self.view.settings().set("color_scheme", new_scheme)

and save it in your Packages/User directory.

Then add a key binding like this:

{  
    "keys": ["YOUR_TOGGLE_SHORCUT"], "command": "toggle_color_scheme",
    "args":
    {
        "color_scheme_1": "Packages/Color Scheme - Default/Solarized (Light).tmTheme" ,
        "color_scheme_2": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme"
    }
}
share|improve this answer
fantastic, exactly what I was looking for! thanks! – pkazmierczak Oct 29 '12 at 13:23
@Riccardo Is there also a way to toggle between three schemes? – Yo Ludke Feb 4 at 12:19

I just found this nice little plugin: https://github.com/skt84/Schemr

Which doesn't exactly allow you to bind, but gives you a Command Palette access instead, which does just perfect for me. (Just in case anyone stumbled on this via google like myself.)

share|improve this answer

If you don't want to bother with editing config files you can install SchemeCycle.

Then cycle color schemes with F8 and Shift+F8. With 2 themes (Dark / Light) it acts as toggling.


If you prefer Command Palette check Norris's answer or try ColorSchemeSelector with : Select Color Scheme command, it will not pollute your pallete as much as Schemr.

Visualization AKA screens:

enter image description here enter image description here

share|improve this answer

To support multiple color schemes one would alter Riccardos answer like so:

class ToggleColorSchemeCommand(sublime_plugin.TextCommand):
    def run(self, edit, **args):

        scheme1 = args["color_scheme_1"]
        scheme2 = args["color_scheme_2"]
        scheme3 = args["color_scheme_3"]
        current_scheme = self.view.settings().get("color_scheme")

        new_scheme = scheme1
        if current_scheme == scheme1:
          new_scheme = scheme2

        if current_scheme == scheme2:
         new_scheme = scheme3

        self.view.settings().set("color_scheme", new_scheme)
share|improve this answer

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.