(self)
| 199 | self.set_selection_in_line(match.start() + 1, match.end() + 1) |
| 200 | |
| 201 | def delete_selection(self): |
| 202 | self.insert(" ") |
| 203 | self.remove_character_before_cursor() |
| 204 | |
| 205 | def select_current_string(self): |
| 206 | string_letter = self.get_string_definition_type(self.current_line, self.current_character_index) |
no test coverage detected