Go up and update hint
(event: KeyPressEvent)
| 546 | |
| 547 | |
| 548 | def up_and_update_hint(event: KeyPressEvent): |
| 549 | """Go up and update hint""" |
| 550 | current_buffer = event.current_buffer |
| 551 | |
| 552 | current_buffer.auto_up(count=event.arg) |
| 553 | _update_hint(current_buffer) |
| 554 | |
| 555 | |
| 556 | def down_and_update_hint(event: KeyPressEvent): |
nothing calls this directly
no test coverage detected
searching dependent graphs…