(self, edit, cmd)
| 388 | # Command |
| 389 | class RunCmdCommand(sublime_plugin.TextCommand): |
| 390 | def run(self, edit, cmd): |
| 391 | text = get_buffer_text(self.view) |
| 392 | global workdir |
| 393 | file = write_file(workdir,text) |
| 394 | cmd = cmd.replace('target.txt',file) |
| 395 | exec_command(cmd) |
| 396 | |
| 397 | |
| 398 | class CurlDownloadFileCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected