summaryrefslogtreecommitdiff
path: root/vendor/github.com/manifoldco/promptui/keycodes.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-11-13 18:28:17 +0100
committerGitHub <noreply@github.com>2020-11-13 18:28:17 +0100
commit738d62ea960af439bd545820e1853cbd73464493 (patch)
tree61a859c039565897f865db052ad7c3bee8b03bfb /vendor/github.com/manifoldco/promptui/keycodes.go
parent2993e97dec9d998d2eca7c5aee918b1429596a85 (diff)
parent8e4a42aa429c6dec0d5face7c69554d8a0677e96 (diff)
downloadpodman-738d62ea960af439bd545820e1853cbd73464493.tar.gz
podman-738d62ea960af439bd545820e1853cbd73464493.tar.bz2
podman-738d62ea960af439bd545820e1853cbd73464493.zip
Merge pull request #7964 from vrothberg/shortnames
short-name aliasing
Diffstat (limited to 'vendor/github.com/manifoldco/promptui/keycodes.go')
-rw-r--r--vendor/github.com/manifoldco/promptui/keycodes.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/vendor/github.com/manifoldco/promptui/keycodes.go b/vendor/github.com/manifoldco/promptui/keycodes.go
new file mode 100644
index 000000000..ef5cd6f0a
--- /dev/null
+++ b/vendor/github.com/manifoldco/promptui/keycodes.go
@@ -0,0 +1,29 @@
+package promptui
+
+import "github.com/chzyer/readline"
+
+// These runes are used to identify the commands entered by the user in the command prompt. They map
+// to specific actions of promptui in prompt mode and can be remapped if necessary.
+var (
+ // KeyEnter is the default key for submission/selection.
+ KeyEnter rune = readline.CharEnter
+
+ // KeyCtrlH is the key for deleting input text.
+ KeyCtrlH rune = readline.CharCtrlH
+
+ // KeyPrev is the default key to go up during selection.
+ KeyPrev rune = readline.CharPrev
+ KeyPrevDisplay = "↑"
+
+ // KeyNext is the default key to go down during selection.
+ KeyNext rune = readline.CharNext
+ KeyNextDisplay = "↓"
+
+ // KeyBackward is the default key to page up during selection.
+ KeyBackward rune = readline.CharBackward
+ KeyBackwardDisplay = "←"
+
+ // KeyForward is the default key to page down during selection.
+ KeyForward rune = readline.CharForward
+ KeyForwardDisplay = "→"
+)