We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c71a6 commit a4460afCopy full SHA for a4460af
adafruit_hid/keycode.py
@@ -284,10 +284,16 @@ class Keycode:
284
"""Alt modifier left of the spacebar"""
285
ALT = LEFT_ALT
286
"""Alias for LEFT_ALT; Alt is also known as Option (Mac)"""
287
+ OPTION = ALT
288
+ """Labeled as Option on some Mac keyboards"""
289
LEFT_GUI = 0xE3
290
"""GUI modifier left of the spacebar"""
291
GUI = LEFT_GUI
292
"""Alias for LEFT_GUI; GUI is also known as the Windows key, Command (Mac), or Meta"""
293
+ WINDOWS = GUI
294
+ """Labeled with a Windows logo on Windows keyboards"""
295
+ COMMAND = GUI
296
+ """Labeled as Command on Mac keyboards, with a clover glyph"""
297
RIGHT_CONTROL = 0xE4
298
"""Control modifier right of the spacebar"""
299
RIGHT_SHIFT = 0xE5
0 commit comments