-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Description
Summary
It seems that the commands in the command palette do not trigger on_post_window_command of EventListener. It can be demonstrated by the following simple event listener
class FoobarListener(EventListener):
def on_post_window_command(self, window, command, args):
print(command, args)
And open command palette and run "View: Toggle Side Bar"
Expected behavior
The console should print toggle_side_bar None
Actual behavior
The function is not triggered. On the other hand, using the shortcut super+K, super+B does trigger the print statement.
Steps to reproduce
As described in the summary
Environment
- Operating system and version:
- Mac OS 10.13.2 (17C88)
- Sublime Text: Dev Channel 3157
asfaltboy, keith-hall, OdatNurd, evandrocoan, kaste and 3 more