diff options
| author | Jack Humbert <jack.humb@gmail.com> | 2017-02-06 18:00:47 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-06 18:00:47 -0500 |
| commit | 0a3c5c06fe31d794bfe0fe7fe558e3331973e881 (patch) | |
| tree | 6b1c06701bac513fdf233a27fe260f31b5544e93 /quantum/process_keycode | |
| parent | 5c8cdfd2b579c198ad37504772e663783f530685 (diff) | |
| parent | 0aa413af44b292e4b44d8f8aee1a92f2cb113438 (diff) | |
| download | qmk_firmware-0a3c5c06fe31d794bfe0fe7fe558e3331973e881.tar.gz qmk_firmware-0a3c5c06fe31d794bfe0fe7fe558e3331973e881.zip | |
Merge pull request #981 from jonasoberschweiber/osx-surrogate-pairs
Add support for Unicode supplementary planes on OS X
Diffstat (limited to 'quantum/process_keycode')
| -rw-r--r-- | quantum/process_keycode/process_unicode.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/quantum/process_keycode/process_unicode.c b/quantum/process_keycode/process_unicode.c index a30e93ae3..9995ba9bd 100644 --- a/quantum/process_keycode/process_unicode.c +++ b/quantum/process_keycode/process_unicode.c | |||
| @@ -141,7 +141,16 @@ bool process_unicode_map(uint16_t keycode, keyrecord_t *record) { | |||
| 141 | const uint32_t* map = unicode_map; | 141 | const uint32_t* map = unicode_map; |
| 142 | uint16_t index = keycode & 0x7FF; | 142 | uint16_t index = keycode & 0x7FF; |
| 143 | uint32_t code = pgm_read_dword_far(&map[index]); | 143 | uint32_t code = pgm_read_dword_far(&map[index]); |
| 144 | if ((code > 0xFFFF && input_mode == UC_OSX) || (code > 0xFFFFF && input_mode == UC_LNX)) { | 144 | if (code > 0xFFFF && code <= 0x10ffff && input_mode == UC_OSX) { |
| 145 | // Convert to UTF-16 surrogate pair | ||
| 146 | code -= 0x10000; | ||
| 147 | uint32_t lo = code & 0x3ff; | ||
| 148 | uint32_t hi = (code & 0xffc00) >> 10; | ||
| 149 | unicode_input_start(); | ||
| 150 | register_hex32(hi + 0xd800); | ||
| 151 | register_hex32(lo + 0xdc00); | ||
| 152 | unicode_input_finish(); | ||
| 153 | } else if ((code > 0x10ffff && input_mode == UC_OSX) || (code > 0xFFFFF && input_mode == UC_LNX)) { | ||
| 145 | // when character is out of range supported by the OS | 154 | // when character is out of range supported by the OS |
| 146 | unicode_map_input_error(); | 155 | unicode_map_input_error(); |
| 147 | } else { | 156 | } else { |
