SYMBOL INDEX (45 symbols across 7 files) FILE: column.go constant APPEND (line 10) | APPEND = -1 type column (line 12) | type column struct method Focus (line 20) | func (c *column) Focus() { method Blur (line 24) | func (c *column) Blur() { method Focused (line 28) | func (c *column) Focused() bool { method Init (line 43) | func (c column) Init() tea.Cmd { method Update (line 48) | func (c column) Update(msg tea.Msg) (tea.Model, tea.Cmd) { method View (line 79) | func (c column) View() string { method DeleteCurrent (line 83) | func (c *column) DeleteCurrent() tea.Cmd { method Set (line 93) | func (c *column) Set(i int, t Task) tea.Cmd { method setSize (line 100) | func (c *column) setSize(width, height int) { method getStyle (line 104) | func (c *column) getStyle() lipgloss.Style { method MoveToNext (line 124) | func (c *column) MoveToNext() tea.Cmd { function newColumn (line 32) | func newColumn(status status) column { type moveMsg (line 120) | type moveMsg struct FILE: data.go method initLists (line 7) | func (b *Board) initLists() { FILE: form.go type Form (line 12) | type Form struct method CreateTask (line 36) | func (f Form) CreateTask() Task { method Init (line 40) | func (f Form) Init() tea.Cmd { method Update (line 44) | func (f Form) Update(msg tea.Msg) (tea.Model, tea.Cmd) { method View (line 75) | func (f Form) View() string { function newDefaultForm (line 20) | func newDefaultForm() *Form { function NewForm (line 24) | func NewForm(title, description string) *Form { FILE: keys.go type keyMap (line 20) | type keyMap struct method ShortHelp (line 7) | func (k keyMap) ShortHelp() []key.Binding { method FullHelp (line 13) | func (k keyMap) FullHelp() [][]key.Binding { FILE: main.go type status (line 10) | type status method getNext (line 12) | func (s status) getNext() status { method getPrev (line 19) | func (s status) getPrev() status { constant margin (line 26) | margin = 4 constant todo (line 31) | todo status = iota constant inProgress (line 32) | inProgress constant done (line 33) | done function main (line 36) | func main() { FILE: model.go type Board (line 10) | type Board struct method Init (line 24) | func (m *Board) Init() tea.Cmd { method Update (line 28) | func (m *Board) Update(msg tea.Msg) (tea.Model, tea.Cmd) { method View (line 71) | func (m *Board) View() string { function NewBoard (line 18) | func NewBoard() *Board { FILE: task.go type Task (line 3) | type Task struct method Next (line 13) | func (t *Task) Next() { method FilterValue (line 22) | func (t Task) FilterValue() string { method Title (line 26) | func (t Task) Title() string { method Description (line 30) | func (t Task) Description() string { function NewTask (line 9) | func NewTask(status status, title, description string) Task {