(self, e: str)
| 822 | self.add_normal_character(e) |
| 823 | |
| 824 | def is_closing_quote(self, e: str) -> bool: |
| 825 | char_count = self._current_line.count(e) |
| 826 | return ( |
| 827 | char_count % 2 == 0 |
| 828 | and cursor_on_closing_char_pair( |
| 829 | self._cursor_offset, self._current_line, e |
| 830 | )[0] |
| 831 | ) |
| 832 | |
| 833 | def insert_char_pair_start(self, e): |
| 834 | """Accepts character which is a part of CHARACTER_PAIR_MAP |
no test coverage detected