mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-26 18:27:53 +00:00
Add support for short-name aliasing. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
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
|
|
)
|