| 213 | |
| 214 | # Text Edit |
| 215 | class RemoveSpecialCharsCommand(sublime_plugin.TextCommand): |
| 216 | def run(self, edit): |
| 217 | text = get_buffer_text(self.view) |
| 218 | text = re.sub(r"(\ |,|\.|\?|<|>|:|;|\"|'|{|}|\[|\]|\\|~|!|@|#|$|%|^|&|\*|\(|\)|\+|-|=|)",'',text) |
| 219 | update_file(self.view, edit, text) |
| 220 | |
| 221 | |
| 222 | class RemoveSpecificStringCommand(sublime_plugin.TextCommand): |
nothing calls this directly
no outgoing calls
no test coverage detected