diff options
author | Marco Fontani <MFONTANI@cpan.org> | 2017-08-28 20:05:42 +0200 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-08-30 11:38:03 -0400 |
commit | da83f04a30903a98b9a8dbe29c2d6cef4f9da3a7 (patch) | |
tree | aac5317daca48e2598e97a1e6f9484f39ab5d1a7 /quantum/process_keycode/process_unicodemap.c | |
parent | 9987f9dcffa8b33e09dc3147088a102df5a6da7d (diff) | |
download | qmk_firmware-da83f04a30903a98b9a8dbe29c2d6cef4f9da3a7.tar.gz qmk_firmware-da83f04a30903a98b9a8dbe29c2d6cef4f9da3a7.zip |
add UC_OSX_RALT to make unicode use the Right Alt key on OSX
Diffstat (limited to 'quantum/process_keycode/process_unicodemap.c')
-rw-r--r-- | quantum/process_keycode/process_unicodemap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/process_keycode/process_unicodemap.c b/quantum/process_keycode/process_unicodemap.c index 75f35112b..47c27b911 100644 --- a/quantum/process_keycode/process_unicodemap.c +++ b/quantum/process_keycode/process_unicodemap.c | |||
@@ -50,7 +50,7 @@ bool process_unicode_map(uint16_t keycode, keyrecord_t *record) { | |||
50 | const uint32_t* map = unicode_map; | 50 | const uint32_t* map = unicode_map; |
51 | uint16_t index = keycode - QK_UNICODE_MAP; | 51 | uint16_t index = keycode - QK_UNICODE_MAP; |
52 | uint32_t code = pgm_read_dword(&map[index]); | 52 | uint32_t code = pgm_read_dword(&map[index]); |
53 | if (code > 0xFFFF && code <= 0x10ffff && input_mode == UC_OSX) { | 53 | if (code > 0xFFFF && code <= 0x10ffff && (input_mode == UC_OSX || input_mode == UC_OSX_RALT)) { |
54 | // Convert to UTF-16 surrogate pair | 54 | // Convert to UTF-16 surrogate pair |
55 | code -= 0x10000; | 55 | code -= 0x10000; |
56 | uint32_t lo = code & 0x3ff; | 56 | uint32_t lo = code & 0x3ff; |
@@ -59,7 +59,7 @@ bool process_unicode_map(uint16_t keycode, keyrecord_t *record) { | |||
59 | register_hex32(hi + 0xd800); | 59 | register_hex32(hi + 0xd800); |
60 | register_hex32(lo + 0xdc00); | 60 | register_hex32(lo + 0xdc00); |
61 | unicode_input_finish(); | 61 | unicode_input_finish(); |
62 | } else if ((code > 0x10ffff && input_mode == UC_OSX) || (code > 0xFFFFF && input_mode == UC_LNX)) { | 62 | } else if ((code > 0x10ffff && (input_mode == UC_OSX || input_mode == UC_OSX_RALT)) || (code > 0xFFFFF && input_mode == UC_LNX)) { |
63 | // when character is out of range supported by the OS | 63 | // when character is out of range supported by the OS |
64 | unicode_map_input_error(); | 64 | unicode_map_input_error(); |
65 | } else { | 65 | } else { |