This repository has been archived by the owner on Apr 19, 2024. It is now read-only.
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.
survey.Multiline The display of the input at the bottom of the terminal is covered #487
Open
Description
What operating system and terminal are you using?
windows11 , powershell
An example that showcases the bug.
code:
qs := []*survey.Question{
{
Name: "prompt",
Prompt: &survey.Multiline{Message: "Enter your query:"},
Validate: survey.Required,
},
}
var answersStruct struct {
Prompt string `survey:"prompt"`
}
survey.Ask(qs, &answersStruct, survey.WithShowCursor(true))
fmt.Println(answersStruct)
What did you see instead?
Activity