You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
post_window_command(window, command_name, args) None Called after a window command has been executed.
This never runs/captures the event. There is some discussion about it here.
I have tried using both post_window_command and on_post_window_command. I created an event listener like so:
classMyEvents(sublime_plugin.EventListener):
# Never runsdefon_post_window_command(self, window, command_name, args):
print("RAN: "+command_name)
# Never runsdefpost_window_command(self, window, command_name, args):
print("RAN: "+command_name)
# Does rundefon_window_command(self, window, command_name, args):
print("RUNNING: "+command_name)
returnNone
I have been trying to use this feature since it was added to the API. I believe it has never worked. I am currently running in OSX 10.9, sublime build 3061
The text was updated successfully, but these errors were encountered:
The API lists this as an event:
This never runs/captures the event. There is some discussion about it here.
I have tried using both
post_window_command
andon_post_window_command
. I created an event listener like so:I have been trying to use this feature since it was added to the API. I believe it has never worked. I am currently running in OSX 10.9, sublime build 3061
The text was updated successfully, but these errors were encountered: