(self, type, select = False)
| 296 | self.move_cursor("NEXT_LINE", select) |
| 297 | |
| 298 | def move_cursor(self, type, select = False): |
| 299 | self.make_active() |
| 300 | if select: bpy.ops.text.move_select(type = type) |
| 301 | else: bpy.ops.text.move(type = type) |
| 302 | |
| 303 | def remove_character_before_cursor(self): |
| 304 | self.make_active() |
no test coverage detected