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

Method MoveDown

internal/tui/picker.go:252–259  ·  view source on GitHub ↗

MoveDown moves the selection down.

()

Source from the content-addressed store, hash-verified

250
251// MoveDown moves the selection down.
252func (p *PRDPicker) MoveDown() {
253 if p.inputMode {
254 return
255 }
256 if p.selectedIndex < len(p.entries)-1 {
257 p.selectedIndex++
258 }
259}
260
261// GetSelectedEntry returns the currently selected PRD entry.
262func (p *PRDPicker) GetSelectedEntry() *PRDEntry {

Callers 4

handleQuitConfirmKeysMethod · 0.45
handleSettingsKeysMethod · 0.45
handlePickerKeysMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected