Move cursor to beginning (Ctrl+A).
(self)
| 310 | return char == self.ctrl['EOF'] |
| 311 | |
| 312 | def handle_move_start(self): |
| 313 | """Move cursor to beginning (Ctrl+A).""" |
| 314 | self.cursor_pos = 0 |
| 315 | self.refresh_display() |
| 316 | |
| 317 | def handle_move_end(self): |
| 318 | """Move cursor to end (Ctrl+E).""" |
nothing calls this directly
no test coverage detected