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 an input description is too long (i.e. if it gets rendered on more than 2 lines) the user input gets lost.
package main
import (
"github.com/charmbracelet/huh"
)
func main() {
form := huh.NewForm(
huh.NewGroup(
huh.NewInput().
Title("FieldName").
Placeholder("Value").
Description("This is a complicated field that requires a long winded description to fully grasp the intricacies of its ins and outs in each particular application. Ideally it should be possible to read the entirety of this description without the user's input disappearing."),
),
)
form.Run()
}
(reproduced on alacritty 0.15.0-dev and rxvt-unicode (urxvt) v9.30)
The text was updated successfully, but these errors were encountered:
When an input description is too long (i.e. if it gets rendered on more than 2 lines) the user input gets lost.
(reproduced on
alacritty 0.15.0-dev
andrxvt-unicode (urxvt) v9.30
)The text was updated successfully, but these errors were encountered: