podman-build/vendor/github.com/manifoldco/promptui/keycodes_other.go
2025-10-11 12:30:35 +09:00

11 lines
188 B
Go

// +build !windows
package promptui
import "github.com/chzyer/readline"
var (
// KeyBackspace is the default key for deleting input text.
KeyBackspace rune = readline.CharBackspace
)