Save the edit when running a Sublime Text 3 plugin
问题 For understanding what I'm trying to achieve : printing delayed text in another view... I'm trying to make this sublime text 3 plugin run properly I want to call multiple method of my class using the edit passed in parameter of my run method as so : # sample code, nothing real class MyCommandClass(sublime_plugin.TextCommand): myEdit = None def run(self, edit): self.myEdit = edit # stuff self.myMethod() def myMethod(self): # use self.myEdit ... And I try to use it later on another method, but