Skip to content

Commit 39b768c

Browse files
authored
🔀 Merge pull request #64 from davep/update-enhanced
Update textual_enhanced
2 parents 8bdfa18 + e81104f commit 39b768c

File tree

3 files changed

+7
-29
lines changed

3 files changed

+7
-29
lines changed

requirements-dev.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ textual==3.0.0
107107
# via textual-fspicker
108108
# via textual-serve
109109
textual-dev==1.7.0
110-
textual-enhanced==0.8.1
110+
textual-enhanced==0.9.0
111111
# via hike
112112
textual-fspicker==0.4.1
113113
# via hike

requirements.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ textual==3.0.0
4848
# via hike
4949
# via textual-enhanced
5050
# via textual-fspicker
51-
textual-enhanced==0.8.1
51+
textual-enhanced==0.9.0
5252
# via hike
5353
textual-fspicker==0.4.1
5454
# via hike

src/hike/widgets/viewer.py

+5-27
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# Textual imports.
2727
from textual import on, work
2828
from textual.app import ComposeResult
29-
from textual.containers import Vertical, VerticalScroll
29+
from textual.containers import Vertical
3030
from textual.events import Click
3131
from textual.message import Message
3232
from textual.reactive import var
@@ -35,6 +35,7 @@
3535
##############################################################################
3636
# Textual enhanced imports.
3737
from textual_enhanced.binding import HelpfulBinding
38+
from textual_enhanced.containers import EnhancedVerticalScroll
3839

3940
##############################################################################
4041
# Typing extensions imports.
@@ -98,8 +99,8 @@ def _maybe_clipboard(self, message: Click) -> None:
9899

99100

100101
##############################################################################
101-
class MarkdownScroll(VerticalScroll):
102-
"""A vertical scrolling widget with more bindings."""
102+
class MarkdownScroll(EnhancedVerticalScroll):
103+
"""The scrolling container for the Markdown document."""
103104

104105
HELP = """
105106
## Movement
@@ -108,29 +109,6 @@ class MarkdownScroll(VerticalScroll):
108109
keys are available for movement within the markdown document:
109110
"""
110111

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

135113
##############################################################################
136114
class Viewer(Vertical, can_focus=False):
@@ -142,7 +120,7 @@ class Viewer(Vertical, can_focus=False):
142120
&.empty {
143121
display: none;
144122
}
145-
&> VerticalScroll {
123+
EnhancedVerticalScroll {
146124
background: transparent;
147125
}
148126
Markdown {

0 commit comments

Comments
 (0)