(options []string, text string, init []int)
| 138 | return choice[0] |
| 139 | } |
| 140 | func (s *shellActionsImpl) Checklist(options []string, text string, init []int) []int { |
| 141 | return s.multiChoice(options, text, init, true) |
| 142 | } |
| 143 | func (s *shellActionsImpl) SetPrompt(prompt string) { |
| 144 | s.reader.prompt = prompt |
| 145 | s.reader.scanner.SetPrompt(s.reader.rlPrompt()) |
nothing calls this directly
no test coverage detected