Handle editor 'show surrounding parens' event (menu or shortcut).
(self, event)
| 74 | self.is_restore_active = False |
| 75 | |
| 76 | def flash_paren_event(self, event): |
| 77 | "Handle editor 'show surrounding parens' event (menu or shortcut)." |
| 78 | indices = (HyperParser(self.editwin, "insert") |
| 79 | .get_surrounding_brackets()) |
| 80 | self.finish_paren_event(indices) |
| 81 | return "break" |
| 82 | |
| 83 | def paren_closed_event(self, event): |
| 84 | "Handle user input of closer." |