| 159 | } |
| 160 | |
| 161 | type selectModel struct { |
| 162 | search textinput.Model |
| 163 | options []string |
| 164 | cursor int |
| 165 | height int |
| 166 | message string |
| 167 | selected string |
| 168 | canceled bool |
| 169 | hideSearch bool |
| 170 | } |
| 171 | |
| 172 | func (selectModel) Init() tea.Cmd { |
| 173 | return nil |
nothing calls this directly
no outgoing calls
no test coverage detected