(self, edit)
| 546 | # About Xtools |
| 547 | class AboutXtoolsCommand(sublime_plugin.TextCommand): |
| 548 | def run(self, edit): |
| 549 | tip = check_version(VERSION) |
| 550 | sublime.message_dialog(ABOUT_XTOOLS.format(version=VERSION,tip=tip)) |
| 551 | |
| 552 | |
| 553 | # Function lib |
nothing calls this directly
no test coverage detected