I have a plugin which at some point has this call:
sublime.set_timeout_async(lambda: self.step4_run_async(), 0)
and this does not work when my plugin is packaged in a .sublime-package. No error in the console, no nothing. Nothing happens.
I have prints all over the place and after I get to this call no print statement that’s inside self.step4_run_async() is displayed.
Any idea what’s going on? The call to
sublime.set_timeout_async(lambda: self.step4_run_async(), 0)
works fine if my plugin is just in a folder and not in a .sublime-package