(self, edit, cmd)
| 271 | |
| 272 | class AddPrefixSuffixCommand(sublime_plugin.TextCommand): |
| 273 | def run(self, edit, cmd): |
| 274 | text = get_buffer_text(self.view) |
| 275 | chars = get_console_text(self.view) |
| 276 | text = add_prefix_suffix(text,chars,cmd) |
| 277 | |
| 278 | if text is not None: |
| 279 | update_file(self.view, edit, text) |
| 280 | |
| 281 | |
| 282 | class ReplaceKeyToValueCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no test coverage detected