@@ -97,6 +97,41 @@ def _maybe_clipboard(self, message: Click) -> None:
97
97
self .post_message (CopyToClipboard (str (self .location )))
98
98
99
99
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
+
100
135
##############################################################################
101
136
class Viewer (Vertical , can_focus = False ):
102
137
"""The Markdown viewer widget."""
@@ -139,14 +174,6 @@ class Viewer(Vertical, can_focus=False):
139
174
140
175
BINDINGS = [
141
176
("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
177
]
151
178
152
179
location : var [HikeLocation | None ] = var (None )
@@ -162,7 +189,7 @@ def compose(self) -> ComposeResult:
162
189
"""Compose the content of the viewer."""
163
190
yield ViewerTitle ()
164
191
yield Rule (line_style = "heavy" )
165
- with VerticalScroll (id = "document" ):
192
+ with MarkdownScroll (id = "document" ):
166
193
yield Markdown (
167
194
open_links = False ,
168
195
parser_factory = lambda : MarkdownIt ("gfm-like" ).use (
@@ -509,15 +536,5 @@ def edit(self) -> None:
509
536
Editor (self .location ), callback = lambda _ : self .reload ()
510
537
)
511
538
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
-
522
539
523
540
### viewer.py ends here
0 commit comments