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

Method MoveDown

internal/tui/settings.go:93–97  ·  view source on GitHub ↗

MoveDown moves the selection down.

()

Source from the content-addressed store, hash-verified

91
92// MoveDown moves the selection down.
93func (s *SettingsOverlay) MoveDown() {
94 if s.selectedIndex < len(s.items)-1 {
95 s.selectedIndex++
96 }
97}
98
99// IsEditing returns true if a string value is being edited.
100func (s *SettingsOverlay) IsEditing() bool {

Calls

no outgoing calls