mirror of
https://github.com/containers/podman.git
synced 2025-08-26 19:40:17 +08:00

Add support for short-name aliasing. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
11 lines
234 B
Go
11 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
|
|
)
|