summaryrefslogtreecommitdiffstats
path: root/quantum/keymap_unicode.c
diff options
context:
space:
mode:
authorPeter Eichinger <peter.eichinger@gmail.com>2016-01-25 17:46:50 +0100
committerPeter Eichinger <peter.eichinger@gmail.com>2016-01-25 17:46:50 +0100
commit78192791bc0bb98d7a469f88a77febb3250c5b93 (patch)
treec20d43cfa5cc4980f8dcf967832e8c913bb84bbe /quantum/keymap_unicode.c
parentc5f90eb99b282c7425e151b82f0ca22969a4a275 (diff)
parente9356dcad5769bc917ab9d3366013b5f193c3ef3 (diff)
downloadqmk_firmware-78192791bc0bb98d7a469f88a77febb3250c5b93.tar.gz
qmk_firmware-78192791bc0bb98d7a469f88a77febb3250c5b93.tar.xz
Merge branch 'master' into flicker-fix
Diffstat (limited to 'quantum/keymap_unicode.c')
-rw-r--r--quantum/keymap_unicode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/keymap_unicode.c b/quantum/keymap_unicode.c
index a9357edec..a44965e61 100644
--- a/quantum/keymap_unicode.c
+++ b/quantum/keymap_unicode.c
@@ -30,6 +30,8 @@ uint16_t hextokeycode(int hex) {
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt)
{
+ // For more info on how this works per OS, see here: https://en.wikipedia.org/wiki/Unicode_input#Hexadecimal_code_input
+
if (record->event.pressed) {
uint16_t unicode = (opt << 8) | id;
register_code(KC_LALT);