(self, edit)
| 177 | # URL And Router |
| 178 | class SelectUrlsExcludePathCommand(sublime_plugin.TextCommand): |
| 179 | def run(self, edit): |
| 180 | text = select_urls(self.view, False) |
| 181 | new_view(self.view, edit, text) |
| 182 | |
| 183 | |
| 184 | class SelectUrlsIncludePathCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected