- Code: Select all
RuntimeError: maximum recursion depth exceeded while calling a Python object
And now I get messages like this until I restart Sublime Text:
- Code: Select all
AttributeError: 'module' object has no attribute 'on_post_save'
AttributeError: 'module' object has no attribute 'reload_plugin'
AttributeError: 'module' object has no attribute 'create_application_commands'
AttributeError: 'module' object has no attribute 'create_text_commands'
repro:
- Code: Select all
import sublime_plugin
class RecursiveListener(sublime_plugin.EventListener):
def on_modified(self, view):
view.run_command('repeat')