forked from varia/go-sh-manymanuals
remove cruft from previous example
This commit is contained in:
parent
dc09d8c1a5
commit
e924189eaf
@ -29,7 +29,6 @@ func handleCliFlags() {
|
|||||||
type model struct {
|
type model struct {
|
||||||
manuals []string
|
manuals []string
|
||||||
cursor int
|
cursor int
|
||||||
selected map[int]struct{}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func initialModel() model {
|
func initialModel() model {
|
||||||
@ -41,7 +40,6 @@ func initialModel() model {
|
|||||||
|
|
||||||
return model{
|
return model{
|
||||||
manuals: manuals,
|
manuals: manuals,
|
||||||
selected: make(map[int]struct{}),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,13 +75,6 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
|||||||
if m.cursor < len(m.manuals)-1 {
|
if m.cursor < len(m.manuals)-1 {
|
||||||
m.cursor++
|
m.cursor++
|
||||||
}
|
}
|
||||||
case "enter", " ":
|
|
||||||
_, ok := m.selected[m.cursor]
|
|
||||||
if ok {
|
|
||||||
// doing nothing!
|
|
||||||
} else {
|
|
||||||
m.selected[m.cursor] = struct{}{}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user