-
Notifications
You must be signed in to change notification settings - Fork 44
Closed
Description
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.