Go down and update hint
(event: KeyPressEvent)
| 554 | |
| 555 | |
| 556 | def down_and_update_hint(event: KeyPressEvent): |
| 557 | """Go down and update hint""" |
| 558 | current_buffer = event.current_buffer |
| 559 | |
| 560 | current_buffer.auto_down(count=event.arg) |
| 561 | _update_hint(current_buffer) |
| 562 | |
| 563 | |
| 564 | def accept_token(event: KeyPressEvent): |
nothing calls this directly
no test coverage detected
searching dependent graphs…