]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - quantum/keymap_unicode.c
adds keycode shortcuts for OSL and OSM
[qmk_firmware.git] / quantum / keymap_unicode.c
index a9357edec7bc4122dcc78afe505de12f351cbe16..a44965e6111baab39aed82142287c31e4ef9ee51 100644 (file)
@@ -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);