mirror of
https://github.com/manifoldco/promptui.git
synced 2026-03-14 14:25:53 +01:00
10 lines
188 B
Go
10 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
|
|
)
|