-
Notifications
You must be signed in to change notification settings - Fork 261
/
keys.go
131 lines (128 loc) · 3.34 KB
/
keys.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
// Package vhs keys.go defines the key map for the Type command.
// The `keymap` map is used to convert runes from a string into the appropriate
// go-rod input.
//
// Type Hello, world!
//
// The above command will type the string "Hello, world!" into the terminal,
// by converting each rune into the correct input.
//
// Hello, world!
// { shift(input.KeyH), input.KeyE, ..., input.KeyD, shift(input.Digit1) }
package main
import (
"github.com/go-rod/rod/lib/input"
)
// shift returns the input.Key with the shift modifier set.
func shift(k input.Key) input.Key {
k, _ = k.Shift()
return k
}
// keymap is the map of runes to input.Keys.
// It is used to convert a string to the correct set of input.Keys for go-rod.
var keymap = map[rune]input.Key{
' ': input.Space,
'!': shift(input.Digit1),
'"': shift(input.Quote),
'#': shift(input.Digit3),
'$': shift(input.Digit4),
'%': shift(input.Digit5),
'&': shift(input.Digit7),
'(': shift(input.Digit9),
')': shift(input.Digit0),
'*': shift(input.Digit8),
'+': shift(input.Equal),
',': input.Comma,
'-': input.Minus,
'.': input.Period,
'/': input.Slash,
'0': input.Digit0,
'1': input.Digit1,
'2': input.Digit2,
'3': input.Digit3,
'4': input.Digit4,
'5': input.Digit5,
'6': input.Digit6,
'7': input.Digit7,
'8': input.Digit8,
'9': input.Digit9,
':': shift(input.Semicolon),
';': input.Semicolon,
'<': shift(input.Comma),
'=': input.Equal,
'>': shift(input.Period),
'?': shift(input.Slash),
'@': shift(input.Digit2),
'A': shift(input.KeyA),
'B': shift(input.KeyB),
'C': shift(input.KeyC),
'D': shift(input.KeyD),
'E': shift(input.KeyE),
'F': shift(input.KeyF),
'G': shift(input.KeyG),
'H': shift(input.KeyH),
'I': shift(input.KeyI),
'J': shift(input.KeyJ),
'K': shift(input.KeyK),
'L': shift(input.KeyL),
'M': shift(input.KeyM),
'N': shift(input.KeyN),
'O': shift(input.KeyO),
'P': shift(input.KeyP),
'Q': shift(input.KeyQ),
'R': shift(input.KeyR),
'S': shift(input.KeyS),
'T': shift(input.KeyT),
'U': shift(input.KeyU),
'V': shift(input.KeyV),
'W': shift(input.KeyW),
'X': shift(input.KeyX),
'Y': shift(input.KeyY),
'Z': shift(input.KeyZ),
'[': input.BracketLeft,
'\'': input.Quote,
'\\': input.Backslash,
'\b': input.Backspace,
'\n': input.Enter,
'\r': input.Enter,
'\t': input.Tab,
'\x1b': input.Escape,
']': input.BracketRight,
'^': shift(input.Digit6),
'_': shift(input.Minus),
'`': input.Backquote,
'a': input.KeyA,
'b': input.KeyB,
'c': input.KeyC,
'd': input.KeyD,
'e': input.KeyE,
'f': input.KeyF,
'g': input.KeyG,
'h': input.KeyH,
'i': input.KeyI,
'j': input.KeyJ,
'k': input.KeyK,
'l': input.KeyL,
'm': input.KeyM,
'n': input.KeyN,
'o': input.KeyO,
'p': input.KeyP,
'q': input.KeyQ,
'r': input.KeyR,
's': input.KeyS,
't': input.KeyT,
'u': input.KeyU,
'v': input.KeyV,
'w': input.KeyW,
'x': input.KeyX,
'y': input.KeyY,
'z': input.KeyZ,
'{': shift(input.BracketLeft),
'|': shift(input.Backslash),
'}': shift(input.BracketRight),
'~': shift(input.Backquote),
'←': input.ArrowLeft,
'↑': input.ArrowUp,
'→': input.ArrowRight,
'↓': input.ArrowDown,
}