Can't type some symbols #197
-
Hey! When I press the following keys on the symbol layer I get the following output:
And when I press the first key on the num layer, it outputs I'm using the ZMK version of the layout on Windows 11. I've checked the ZMK, Miryoku and Miryoku-zmk docs for anything relating to language / region but can't find any relevant config. I've also double-checked with my old keyboard and it can output the keys correctly, so I don't think it's an OS level config I've messed up. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I have the same issue with qmk on Linux! |
Beta Was this translation helpful? Give feedback.
-
Keyboard firmware assumes the host is using US ANSI. For localised layouts on the host you need to translate keycodes. For QMK see https://docs.qmk.fm/#/reference_keymap_extras?id=header-files. For Miryoku, you'd add a Alternatively, use EurKEY, Compose, or US International, which wouldn't require any modification to the keymap. |
Beta Was this translation helpful? Give feedback.
Keyboard firmware assumes the host is using US ANSI. For localised layouts on the host you need to translate keycodes.
For QMK see https://docs.qmk.fm/#/reference_keymap_extras?id=header-files.
For ZMK see https://github.com/joelspadin/zmk-locale-generator/releases.
For Miryoku, you'd add a
#include
for the appropriate localisation header file tocustom_config.h
and then substitute custom layers with the localised keycodes where they differ. See #85.Alternatively, use EurKEY, Compose, or US International, which wouldn't require any modification to the keymap.