Skip to content

Commit 8bdfa18

Browse files
authored
🔀 Merge pull request #63 from davep/less-vi
Add some vim/less-a-like binds to the document viewer
2 parents 6046b2d + 7f402ff commit 8bdfa18

File tree

2 files changed

+39
-19
lines changed

2 files changed

+39
-19
lines changed

ChangeLog.md

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
to the document. ([#60](https://github.com/davep/hike/pull/60))
1212
- Added support for scrolling the markdown up/down half a page.
1313
([#62](https://github.com/davep/hike/pull/62))
14+
- Added some movement key bindings to the markdown document that might be
15+
familiar to users of things like `vim` and `less`.
16+
([#63](https://github.com/davep/hike/pull/63))
1417

1518
## v0.7.0
1619

src/hike/widgets/viewer.py

+36-19
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,41 @@ def _maybe_clipboard(self, message: Click) -> None:
9797
self.post_message(CopyToClipboard(str(self.location)))
9898

9999

100+
##############################################################################
101+
class MarkdownScroll(VerticalScroll):
102+
"""A vertical scrolling widget with more bindings."""
103+
104+
HELP = """
105+
## Movement
106+
107+
As well as using the common set of cursor and page keys, the following
108+
keys are available for movement within the markdown document:
109+
"""
110+
111+
BINDINGS = [
112+
HelpfulBinding("j, e, enter", "scroll_down", tooltip="Scroll down one line"),
113+
HelpfulBinding("k, y", "scroll_up", tooltip="Scroll up one line"),
114+
HelpfulBinding("f, space, z", "page_down", tooltip="Scroll down one page"),
115+
HelpfulBinding("b, w", "page_up", tooltip="Scroll up one page"),
116+
HelpfulBinding(
117+
"shift+pageup, u", "scroll_half_page(-1)", tooltip="Scroll up half a page"
118+
),
119+
HelpfulBinding(
120+
"shift+pagedown, d",
121+
"scroll_half_page(1)",
122+
tooltip="Scroll down half a page",
123+
),
124+
]
125+
126+
def action_scroll_half_page(self, direction: Literal[-1, 1]) -> None:
127+
"""Scroll the view half a page in the given direction.
128+
129+
Args:
130+
direction: The direction to scroll in.
131+
"""
132+
self.scroll_relative(y=(self.size.height // 2) * direction)
133+
134+
100135
##############################################################################
101136
class Viewer(Vertical, can_focus=False):
102137
"""The Markdown viewer widget."""
@@ -139,14 +174,6 @@ class Viewer(Vertical, can_focus=False):
139174

140175
BINDINGS = [
141176
("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-
),
150177
]
151178

152179
location: var[HikeLocation | None] = var(None)
@@ -162,7 +189,7 @@ def compose(self) -> ComposeResult:
162189
"""Compose the content of the viewer."""
163190
yield ViewerTitle()
164191
yield Rule(line_style="heavy")
165-
with VerticalScroll(id="document"):
192+
with MarkdownScroll(id="document"):
166193
yield Markdown(
167194
open_links=False,
168195
parser_factory=lambda: MarkdownIt("gfm-like").use(
@@ -509,15 +536,5 @@ def edit(self) -> None:
509536
Editor(self.location), callback=lambda _: self.reload()
510537
)
511538

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-
522539

523540
### viewer.py ends here

0 commit comments

Comments
 (0)