(self, edit)
| 327 | # Text encode |
| 328 | class Base64EncodeTextCommand(sublime_plugin.TextCommand): |
| 329 | def run(self, edit): |
| 330 | text = get_buffer_text(self.view) |
| 331 | text = base64.b64encode(text.encode()) |
| 332 | panel_print(self.view, edit, text.decode()) |
| 333 | |
| 334 | |
| 335 | class Base64DecodeTextCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected