(self, text, line, begidx, endidx)
| 787 | options_capture = ('start', 'stop', 'list', 'fetch', 'print') |
| 788 | |
| 789 | def complete_capture(self, text, line, begidx, endidx): |
| 790 | return [cat for cat in self.options_capture if cat.startswith(text)] |
| 791 | |
| 792 | # ------------------------[ hold ]------------------------------------ |
| 793 | def do_hold(self, arg): |
nothing calls this directly
no outgoing calls
no test coverage detected