(self)
| 301 | else: bpy.ops.text.move(type = type) |
| 302 | |
| 303 | def remove_character_before_cursor(self): |
| 304 | self.make_active() |
| 305 | bpy.ops.text.delete(type = "PREVIOUS_CHARACTER") |
| 306 | |
| 307 | def line_break(self): |
| 308 | self.make_active() |
no test coverage detected