(self, event)
| 38 | self.auto_complete_box.draw() |
| 39 | |
| 40 | def simplify_work_operators(self, event): |
| 41 | if event.ctrl and event.type == "Y" and event.value == "PRESS": |
| 42 | get_active_text_block().select_current_string() |
| 43 | raise BlockEvent() |
| 44 | |
| 45 | |
| 46 | class AutoCompleteTextBox: |
nothing calls this directly
no test coverage detected