TextMate, the missing editor
(exe=u'mate')
| 102 | |
| 103 | |
| 104 | def mate(exe=u'mate'): |
| 105 | """ TextMate, the missing editor""" |
| 106 | # wait=True is not required since we're using the -w flag to mate |
| 107 | install_editor(exe + u' -w -l {line} {filename}') |
| 108 | |
| 109 | |
| 110 | # ########################################## |
nothing calls this directly
no test coverage detected