Sublime Forum

Camaleón

#1

Never announced,

Camaleón plugin allows you to quickly cycle between a combination of user defined chrome themes and colours schemes when pressing F8

To go to the previous group press SHIFT+F8

By pressing CTRL+F8 a random colour scheme will be chosen

github.com/SublimeText/Camaleon

0 Likes

#2

Thanks, I’m enjoying Camaleón. I did find the theme refresh issue to be somewhat frustrating, so I remapped the default Camaleón F8 to Alt+F8 and setup the following AutoHotKey shortcut to handle refreshing the app everytime I toggle the theme.

; F8 - Change/refresh theme in Sublime Text
F8::                                        ;F8 hotkey
IfWinActive ahk_class PX_WINDOW_CLASS
    Send !{F8}                              ;Send Alt-F8 to Sublime
    WinMinimize ahk_class PX_WINDOW_CLASS   ; minimize Sublime to force refresh
    WinActivate ahk_class PX_WINDOW_CLASS   ; restore Sublime to complete refresh

Jordan

0 Likes

#3

Thanks for the tip! :smile:

0 Likes