Skip to content

Commit 28d670b

Browse files
committed
keycode_mac_fr: add F20 to F24, change OPENPARENS to LEFT_PARENS
1 parent 11160d2 commit 28d670b

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

libraries/keycode_mac_fr.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class Keycode:
114114
QUOTE = FOUR
115115
"""``4`` and ``'``"""
116116
FIVE = 0x22
117-
OPENPARENS = FIVE
117+
LEFT_PARENS = FIVE
118118
"""``5`` and ``(``"""
119119
SIX = 0x23
120120
PARAGRAPH = SIX
@@ -285,6 +285,17 @@ class Keycode:
285285
F19 = 0x6E
286286
"""Function key F19 (Mac)"""
287287

288+
F20 = 0x6F
289+
"""Function key F20"""
290+
F21 = 0x70
291+
"""Function key F21"""
292+
F22 = 0x71
293+
"""Function key F22"""
294+
F23 = 0x72
295+
"""Function key F23"""
296+
F24 = 0x73
297+
"""Function key F24"""
298+
288299
LEFT_CONTROL = 0xE0
289300
"""Control modifier left of the spacebar"""
290301
CONTROL = LEFT_CONTROL

0 commit comments

Comments
 (0)