sublimator wrote:Jon, how does the asynchronous update of the quick panel work?
class QuickPanelUpdateCommand(sublimeplugin.WindowCommand):
def run(self, window, args):
window.showQuickPanel("somekey", "echo", ["aa", "bb"])
sublime.setTimeout(functools.partial(self.update, window), 1000)
def update(self, window):
window.showQuickPanel("somekey", "echo", ["aa", "bb", "cc"])
Return to Plugin Announcements
Users browsing this forum: No registered users and 8 guests