You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`keycode_<platform>_<lang>` modules are an attempt to make it easier to swap layouts. HID Keycodes normally reference the US keyboard. These these localized keycodes offer a level of conversion allowing to use `Keycode.A` across azerty and qwerty keyboards for example. It won't swap `control` and `command` to match the platform however. (yet ?)
23
27
24
28
```py
@@ -30,4 +34,6 @@ else:
30
34
kbd.send(Keycode.COMMAND, Keycode.A)
31
35
```
32
36
33
-
NOTE: this is pretty much experimental for now, these layouts are not for use.
37
+
### NOTE
38
+
39
+
This is pretty much experimental for now, the layout and keycode files are stand-ins.
0 commit comments