(self, edit)
| 69 | # IP And Domain |
| 70 | class SelectIpv4LanCommand(sublime_plugin.TextCommand): |
| 71 | def run(self, edit): |
| 72 | lan_ips,wan_ips =select_ipv4(self.view) |
| 73 | text = '\n'.join(lan_ips) |
| 74 | new_view(self.view, edit, text) |
| 75 | |
| 76 | |
| 77 | class SelectIpv4WanCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected