We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d28198 commit 205cb35Copy full SHA for 205cb35
readchar/key.py
@@ -14,6 +14,25 @@
14
CTRL_D = '\x04'
15
CTRL_E = '\x05'
16
CTRL_F = '\x06'
17
+CTRL_G = '\x07'
18
+CTRL_H = '\x08'
19
+CTRL_I = '\t'
20
+CTRL_J = '\n'
21
+CTRL_K = '\x0b'
22
+CTRL_L = '\x0c'
23
+CTRL_M = '\r'
24
+CTRL_N = '\x0e'
25
+CTRL_O = '\x0f'
26
+CTRL_P = '\x10'
27
+CTRL_Q = '\x11'
28
+CTRL_R = '\x12'
29
+CTRL_S = '\x13'
30
+CTRL_T = '\x14'
31
+CTRL_U = '\x15'
32
+CTRL_V = '\x16'
33
+CTRL_W = '\x17'
34
+CTRL_X = '\x18'
35
+CTRL_Y = '\x19'
36
CTRL_Z = '\x1a'
37
38
# ALT
0 commit comments