()
| 285 | } |
| 286 | |
| 287 | func createPaths() []list.Item { |
| 288 | paths := getPaths() |
| 289 | items := make([]list.Item, len(paths)) |
| 290 | for i, path := range paths { |
| 291 | items[i] = item(path) |
| 292 | } |
| 293 | return items |
| 294 | } |
| 295 | |
| 296 | func setupTextInput() textinput.Model { |
| 297 | ti := textinput.New() |
no test coverage detected