(self, edit)
| 189 | |
| 190 | class SelectRoutersFromTextCommand(sublime_plugin.TextCommand): |
| 191 | def run(self, edit): |
| 192 | text = get_buffer_text(self.view) |
| 193 | results = select_routers(text) |
| 194 | text = filter_routers(results) |
| 195 | new_view(self.view, edit, text) |
| 196 | |
| 197 | |
| 198 | class RecoverJsLinkCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected