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 a99d7c3 commit a8cb9c1Copy full SHA for a8cb9c1
ahkpy/key_state.py
@@ -137,6 +137,9 @@ def get_key_name_from_vk(vk: int) -> str:
137
138
>>> ahkpy.get_key_name_from_vk(112)
139
'F1'
140
+
141
+ :command: `GetKeyName
142
+ <https://www.autohotkey.com/docs/commands/GetKey.htm>`_
143
"""
144
return get_key_name(f"vk{vk}")
145
@@ -146,6 +149,9 @@ def get_key_name_from_sc(sc: int) -> str:
146
149
147
150
>>> ahkpy.get_key_name_from_sc(59)
148
151
152
153
154
155
156
return get_key_name(f"sc{sc}")
157
0 commit comments