Resume autosuggestions after deleting last character
(event: KeyPressEvent)
| 532 | |
| 533 | |
| 534 | def backspace_and_resume_hint(event: KeyPressEvent): |
| 535 | """Resume autosuggestions after deleting last character""" |
| 536 | nc.backward_delete_char(event) |
| 537 | _update_hint(event.current_buffer) |
| 538 | |
| 539 | |
| 540 | def resume_hinting(event: KeyPressEvent): |
nothing calls this directly
no test coverage detected
searching dependent graphs…