1
0
mirror of https://github.com/strongdm/comply synced 2024-07-08 09:21:47 +00:00
comply/vendor/github.com/manifoldco/promptui/keycodes_windows.go

30 lines
993 B
Go
Raw Normal View History

2018-05-15 21:13:11 +00:00
package promptui
// source: https://msdn.microsoft.com/en-us/library/aa243025(v=vs.60).aspx
var (
// KeyEnter is the default key for submission/selection inside a command line prompt.
2018-05-15 21:13:11 +00:00
KeyEnter rune = 13
// KeyBackspace is the default key for deleting input text inside a command line prompt.
2018-05-15 21:13:11 +00:00
KeyBackspace rune = 8
// FIXME: keys below are not triggered by readline, not working on Windows
// KeyPrev is the default key to go up during selection inside a command line prompt.
KeyPrev rune = 38
KeyPrevDisplay = "k"
2018-05-15 21:13:11 +00:00
// KeyNext is the default key to go down during selection inside a command line prompt.
KeyNext rune = 40
KeyNextDisplay = "j"
2018-05-15 21:13:11 +00:00
// KeyBackward is the default key to page up during selection inside a command line prompt.
KeyBackward rune = 37
KeyBackwardDisplay = "h"
2018-05-15 21:13:11 +00:00
// KeyForward is the default key to page down during selection inside a command line prompt.
KeyForward rune = 39
KeyForwardDisplay = "l"
2018-05-15 21:13:11 +00:00
)