| 476 | |
| 477 | # Pentest help module |
| 478 | class PentestHelpModuleCommand(sublime_plugin.TextCommand): |
| 479 | def run(self, edit, tool): |
| 480 | if tool == 'upload': |
| 481 | global file_upload_package |
| 482 | text = file_upload_package |
| 483 | |
| 484 | new_view(self.view, edit, text, 'Markdown.sublime-syntax') |
| 485 | |
| 486 | |
| 487 | # Reserve shell tool |
nothing calls this directly
no outgoing calls
no test coverage detected