mirror of
https://github.com/containers/podman.git
synced 2025-09-09 21:52:21 +08:00

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