Open
Description
I have the following code using the MultiSelect
to prompt the user to select an option:
options := []string{"a", "b", "c"}
selectedOptions, err := pterm.DefaultInteractiveMultiselect.
WithOptions(options).
Show()
if err != nil {
return err
}
pterm.Info.Printfln("Selected options: %s", pterm.Green(selectedOptions))
It seems that the "Please select your options" is getting re-printing on each keystroke.