|
11 | 11 | from os import getenv
|
12 | 12 | from pathlib import Path
|
13 | 13 | from subprocess import run
|
| 14 | +from typing import Literal |
14 | 15 |
|
15 | 16 | ##############################################################################
|
16 | 17 | # httpx imports.
|
|
31 | 32 | from textual.reactive import var
|
32 | 33 | from textual.widgets import Label, Markdown, Rule
|
33 | 34 |
|
| 35 | +############################################################################## |
| 36 | +# Textual enhanced imports. |
| 37 | +from textual_enhanced.binding import HelpfulBinding |
| 38 | + |
34 | 39 | ##############################################################################
|
35 | 40 | # Typing extensions imports.
|
36 | 41 | from typing_extensions import Self
|
@@ -128,9 +133,21 @@ class Viewer(Vertical, can_focus=False):
|
128 | 133 | while holding down <kbd>ctrl</kbd>, or click 3 times. Doing so on the
|
129 | 134 | location will copy the location, doing so on the main document will copy
|
130 | 135 | the markdown's source.
|
| 136 | +
|
| 137 | + Locally-useful keys include: |
131 | 138 | """
|
132 | 139 |
|
133 |
| - BINDINGS = [("escape", "bounce_out")] |
| 140 | + BINDINGS = [ |
| 141 | + ("escape", "bounce_out"), |
| 142 | + HelpfulBinding( |
| 143 | + "shift+pageup", "scroll_half_page(-1)", tooltip="Scroll up half a page" |
| 144 | + ), |
| 145 | + HelpfulBinding( |
| 146 | + "space, shift+pagedown", |
| 147 | + "scroll_half_page(1)", |
| 148 | + tooltip="Scroll down half a page", |
| 149 | + ), |
| 150 | + ] |
134 | 151 |
|
135 | 152 | location: var[HikeLocation | None] = var(None)
|
136 | 153 | """The location of the markdown being displayed."""
|
@@ -492,5 +509,15 @@ def edit(self) -> None:
|
492 | 509 | Editor(self.location), callback=lambda _: self.reload()
|
493 | 510 | )
|
494 | 511 |
|
| 512 | + def action_scroll_half_page(self, direction: Literal[-1, 1]) -> None: |
| 513 | + """Scroll the Markdown half a page in the given direction. |
| 514 | +
|
| 515 | + Args: |
| 516 | + direction: The direction to scroll in. |
| 517 | + """ |
| 518 | + (view := self.get_child_by_type(VerticalScroll)).scroll_relative( |
| 519 | + y=(view.size.height // 2) * direction |
| 520 | + ) |
| 521 | + |
495 | 522 |
|
496 | 523 | ### viewer.py ends here
|
0 commit comments