Skip to content
This repository was archived by the owner on Apr 19, 2024. It is now read-only.
This repository was 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

@Rehtt

Description

@Rehtt

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)

Imgur
What did you expect to see?

What did you see instead?

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions