26
26
# Textual imports.
27
27
from textual import on , work
28
28
from textual .app import ComposeResult
29
- from textual .containers import Vertical , VerticalScroll
29
+ from textual .containers import Vertical
30
30
from textual .events import Click
31
31
from textual .message import Message
32
32
from textual .reactive import var
35
35
##############################################################################
36
36
# Textual enhanced imports.
37
37
from textual_enhanced .binding import HelpfulBinding
38
+ from textual_enhanced .containers import EnhancedVerticalScroll
38
39
39
40
##############################################################################
40
41
# Typing extensions imports.
@@ -98,8 +99,8 @@ def _maybe_clipboard(self, message: Click) -> None:
98
99
99
100
100
101
##############################################################################
101
- class MarkdownScroll (VerticalScroll ):
102
- """A vertical scrolling widget with more bindings ."""
102
+ class MarkdownScroll (EnhancedVerticalScroll ):
103
+ """The scrolling container for the Markdown document ."""
103
104
104
105
HELP = """
105
106
## Movement
@@ -108,29 +109,6 @@ class MarkdownScroll(VerticalScroll):
108
109
keys are available for movement within the markdown document:
109
110
"""
110
111
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
112
135
113
##############################################################################
136
114
class Viewer (Vertical , can_focus = False ):
@@ -142,7 +120,7 @@ class Viewer(Vertical, can_focus=False):
142
120
&.empty {
143
121
display: none;
144
122
}
145
- &> VerticalScroll {
123
+ EnhancedVerticalScroll {
146
124
background: transparent;
147
125
}
148
126
Markdown {
0 commit comments