我想处理一个事件,当我更改我正在为Sublime Text 2编写的插件的color_scheme
内部设置时触发的事件。Preferences.sublime-settings
我读过使用on_window_command
,EventListener
但似乎它不会触发。
class MyPluginEvents(sublime_plugin.EventListener):
def on_window_command(self, window, command_name, args):
print " --- FIRE! --- "
我也试过post_window_command
没有成功。有什么方法可以检测偏好何时发生变化?