为了理解我想要实现的目标:在另一个视图中打印延迟的文本......
我正在尝试使这个 sublime text 3 插件正常运行我想使用我的 run 方法的参数中传递的编辑来调用我的类的多个方法,如下所示:
# 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 ...
我稍后尝试在另一种方法上使用它,但是当我执行插件时出现此错误:
ValueError: Edit objects may not be used after the TextCommand's run method has returned
据我了解,编辑对象的所有使用都必须在运行命令返回之前。而且当我在玩时set_timeout
,情况可能并非如此......那我该怎么办?
提前致谢。