It seems `on_post_window_command` is not called (ST3 3047 - Windows 7 64). See also http://www.sublimetext.com/forum/viewtopic.php?f=6&t=13780 Snippet reproducing the issue: ``` import sublime_plugin class My(sublime_plugin.EventListener): def on_post_window_command(self, window, command_name, args): print(command_name, args) def on_post_text_command(self, window, command_name, args): print(command_name, args) ``` `on_post_text_command` is ok.
It seems
on_post_window_commandis not called (ST3 3047 - Windows 7 64).See also http://www.sublimetext.com/forum/viewtopic.php?f=6&t=13780
Snippet reproducing the issue:
on_post_text_commandis ok.