Move cursor to end (Ctrl+E).
(self)
| 315 | self.refresh_display() |
| 316 | |
| 317 | def handle_move_end(self): |
| 318 | """Move cursor to end (Ctrl+E).""" |
| 319 | self.cursor_pos = len(self.password) |
| 320 | self.refresh_display() |
| 321 | |
| 322 | def handle_erase(self): |
| 323 | """Delete character before cursor (Backspace/DEL).""" |
nothing calls this directly
no test coverage detected