Skip to content

Commit 205cb35

Browse files
Added Ctrl-* for latin alphabet magmax#59
1 parent 7d28198 commit 205cb35

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

readchar/key.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,25 @@
1414
CTRL_D = '\x04'
1515
CTRL_E = '\x05'
1616
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'
1736
CTRL_Z = '\x1a'
1837

1938
# ALT

0 commit comments

Comments
 (0)