summaryrefslogtreecommitdiff
path: root/quantum/keymap_unicode.c
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-01-23 20:37:00 -0500
committerJack Humbert <jack.humb@gmail.com>2016-01-23 20:37:00 -0500
commit9a1ae948c9e19d3153512c196801a969c9637732 (patch)
tree948641e82788ee298468da9090749f79ad765c00 /quantum/keymap_unicode.c
parente5aee62e54d0b6f02ff170f4e9bf1e738d36fb4c (diff)
parentae620fe8562254a5c00a48b863cabd4c87abd613 (diff)
Merge pull request #104 from jackhumbert/smarkefile
Rework Planck file structure
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 a9357edec7..a44965e611 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);