gum/input/options.go
2022-08-03 12:28:02 -04:00

17 lines
756 B
Go

package input
import "github.com/charmbracelet/gum/style"
// Options are the customization options for the input.
// nolint:staticcheck
type Options struct {
Placeholder string `help:"Placeholder value" default:"Type something..."`
Prompt string `help:"Prompt to display" default:"> "`
PromptStyle style.Styles `embed:"" prefix:"prompt."`
CursorStyle style.Styles `embed:"" prefix:"cursor." set:"defaultForeground=212"`
Value string `help:"Initial value (can also be passed via stdin)" default:""`
CharLimit int `help:"Maximum value length (0 for no limit)" default:"400"`
Width int `help:"Input width" default:"40"`
Password bool `help:"Mask input characters" default:"false"`
}