Skip to content

Commit 6046b2d

Browse files
authored
🔀 Merge pull request #62 from davep/half-scroll
Add the ability to scroll the viewer half a page
2 parents 9346c4e + c59d544 commit 6046b2d

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

ChangeLog.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
([#59](https://github.com/davep/hike/pull/59))
1010
- Added <kbd>ctrl</kbd>+<kbd>r</kbd> as an alternative binding for jumping
1111
to the document. ([#60](https://github.com/davep/hike/pull/60))
12+
- Added support for scrolling the markdown up/down half a page.
13+
([#62](https://github.com/davep/hike/pull/62))
1214

1315
## v0.7.0
1416

src/hike/widgets/viewer.py

+28-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from os import getenv
1212
from pathlib import Path
1313
from subprocess import run
14+
from typing import Literal
1415

1516
##############################################################################
1617
# httpx imports.
@@ -31,6 +32,10 @@
3132
from textual.reactive import var
3233
from textual.widgets import Label, Markdown, Rule
3334

35+
##############################################################################
36+
# Textual enhanced imports.
37+
from textual_enhanced.binding import HelpfulBinding
38+
3439
##############################################################################
3540
# Typing extensions imports.
3641
from typing_extensions import Self
@@ -128,9 +133,21 @@ class Viewer(Vertical, can_focus=False):
128133
while holding down <kbd>ctrl</kbd>, or click 3 times. Doing so on the
129134
location will copy the location, doing so on the main document will copy
130135
the markdown's source.
136+
137+
Locally-useful keys include:
131138
"""
132139

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+
]
134151

135152
location: var[HikeLocation | None] = var(None)
136153
"""The location of the markdown being displayed."""
@@ -492,5 +509,15 @@ def edit(self) -> None:
492509
Editor(self.location), callback=lambda _: self.reload()
493510
)
494511

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+
495522

496523
### viewer.py ends here

0 commit comments

Comments
 (0)