You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling fmt.Printf with a long string, before running the prompt it'll cut the output.
Here's an example of a call:
fmt.Printf("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Now replace -> %s in this terminal to see if this will get cut off or not... Nulla consequat odio sed sollicitudin posuere. ", "this is the replacement string")
prompt:= promptui.Prompt{
Label: "Label",
Mask: ' ',
Templates: &promptui.PromptTemplates{
Valid: "Label",
Success: " ",
},
}
input, err:=prompt.Run()
Here's a print of how it looks.
The text was updated successfully, but these errors were encountered:
Hello,
I'm using v0.9.0 of promptui.
When calling
fmt.Printf
with a long string, before running the prompt it'll cut the output.Here's an example of a call:
Here's a print of how it looks.
The text was updated successfully, but these errors were encountered: