(self, edit)
| 183 | |
| 184 | class SelectUrlsIncludePathCommand(sublime_plugin.TextCommand): |
| 185 | def run(self, edit): |
| 186 | text = select_urls(self.view, True) |
| 187 | new_view(self.view, edit, text) |
| 188 | |
| 189 | |
| 190 | class SelectRoutersFromTextCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected