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

Method ScrollDown

internal/tui/diff.go:123–128  ·  view source on GitHub ↗

ScrollDown scrolls down one line.

()

Source from the content-addressed store, hash-verified

121
122// ScrollDown scrolls down one line.
123func (d *DiffViewer) ScrollDown() {
124 maxOffset := d.maxOffset()
125 if d.offset < maxOffset {
126 d.offset++
127 }
128}
129
130// PageUp scrolls up half a page.
131func (d *DiffViewer) PageUp() {

Callers

nothing calls this directly

Calls 1

maxOffsetMethod · 0.95

Tested by

no test coverage detected