blob: 789feae4c08c3d2ffe830f4211890381d9c5f34c (
plain)
1
2
3
4
5
6
7
8
9
10
|
// +build !windows
package promptui
import "github.com/chzyer/readline"
var (
// KeyBackspace is the default key for deleting input text.
KeyBackspace rune = readline.CharBackspace
)
|