Accept autosuggestion and move cursor left in place
(event: KeyPressEvent)
| 520 | |
| 521 | |
| 522 | def accept_and_move_cursor_left(event: KeyPressEvent): |
| 523 | """Accept autosuggestion and move cursor left in place""" |
| 524 | accept_and_keep_cursor(event) |
| 525 | nc.backward_char(event) |
| 526 | |
| 527 | |
| 528 | def _update_hint(buffer: Buffer): |
nothing calls this directly
no test coverage detected
searching dependent graphs…