(tools []string)
| 173 | } |
| 174 | |
| 175 | func newToolMenuModel(tools []string) toolMenuModel { |
| 176 | return toolMenuModel{ |
| 177 | step: newPickerStep( |
| 178 | "Manage tools", |
| 179 | tools, |
| 180 | "Use ↑/↓ or j/k to move, type to filter, Enter to select, q to quit.", |
| 181 | ), |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | func (m toolMenuModel) Init() tea.Cmd { return nil } |
| 186 |