mirror of
https://github.com/manifoldco/promptui.git
synced 2026-03-14 22:35:53 +01:00
10 lines
234 B
Go
10 lines
234 B
Go
// +build windows
|
|
|
|
package promptui
|
|
|
|
// source: https://msdn.microsoft.com/en-us/library/aa243025(v=vs.60).aspx
|
|
|
|
var (
|
|
// KeyBackspace is the default key for deleting input text inside a command line prompt.
|
|
KeyBackspace rune = 8
|
|
)
|