Several of the ViewEventListener methods do not appear to ever get called, despite being advertised in the Sublime3 API. For me, the most important is on_post_save (although, on_new and on_load would also be helpful.) Example code:
class MyViewEventListener(sublime_plugin.ViewEventListener):
@classmethod
def is_applicable(cls, settings):
return True
@classmethod
def applies_to_primary_view_only(cls):
return False
def on_post_save(self):
print('on_post_save called!!!!')
The console window never prints on_post_save called!!!!. Broken in Build 3143 and development, Mac OS X (probably platform-independent.)
