(self, edit)
| 90 | |
| 91 | class SelectIpv4PortCommand(sublime_plugin.TextCommand): |
| 92 | def run(self, edit): |
| 93 | ip_ports = select_ipv4_port(self.view) |
| 94 | text = '\n'.join(ip_ports) |
| 95 | new_view(self.view, edit, text) |
| 96 | |
| 97 | |
| 98 | class CountIpv4NumberCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected