MCPcopy Create free account
hub / github.com/MiniCodeMonkey/chief / PageDown

Method PageDown

internal/tui/diff.go:139–145  ·  view source on GitHub ↗

PageDown scrolls down half a page.

()

Source from the content-addressed store, hash-verified

137
138// PageDown scrolls down half a page.
139func (d *DiffViewer) PageDown() {
140 d.offset += d.height / 2
141 maxOffset := d.maxOffset()
142 if d.offset > maxOffset {
143 d.offset = maxOffset
144 }
145}
146
147// ScrollToTop scrolls to the top.
148func (d *DiffViewer) ScrollToTop() {

Callers

nothing calls this directly

Calls 1

maxOffsetMethod · 0.95

Tested by

no test coverage detected