mirror of
https://github.com/charmbracelet/gum
synced 2026-03-14 13:45:45 +01:00
10 lines
400 B
Go
10 lines
400 B
Go
package input
|
|
|
|
// Options are the customization options for the input.
|
|
type Options struct {
|
|
CursorColor string `help:"Color of prompt" default:"212"`
|
|
Placeholder string `help:"Placeholder value" default:"Type something..."`
|
|
Prompt string `help:"Prompt to display" default:"> "`
|
|
PromptColor string `help:"Color of prompt" default:"7"`
|
|
Width int `help:"Input width" default:"20"`
|
|
}
|