Resume autosuggestions
(event: KeyPressEvent)
| 538 | |
| 539 | |
| 540 | def resume_hinting(event: KeyPressEvent): |
| 541 | """Resume autosuggestions""" |
| 542 | pass_through.reply(event) |
| 543 | # Order matters: if update happened first and event reply second, the |
| 544 | # suggestion would be auto-accepted if both actions are bound to same key. |
| 545 | _update_hint(event.current_buffer) |
| 546 | |
| 547 | |
| 548 | def up_and_update_hint(event: KeyPressEvent): |
nothing calls this directly
no test coverage detected
searching dependent graphs…