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 | |
| 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')
| -rw-r--r-- | quantum/process_keycode/process_unicode_common.c | 6 | ||||
| -rw-r--r-- | quantum/process_keycode/process_unicode_common.h | 1 | ||||
| -rw-r--r-- | quantum/process_keycode/process_unicodemap.c | 4 |
3 files changed, 9 insertions, 2 deletions
diff --git a/quantum/process_keycode/process_unicode_common.c b/quantum/process_keycode/process_unicode_common.c index 84b5d673d..7f34ad57c 100644 --- a/quantum/process_keycode/process_unicode_common.c +++ b/quantum/process_keycode/process_unicode_common.c | |||
| @@ -49,6 +49,9 @@ void unicode_input_start (void) { | |||
| 49 | case UC_OSX: | 49 | case UC_OSX: |
| 50 | register_code(KC_LALT); | 50 | register_code(KC_LALT); |
| 51 | break; | 51 | break; |
| 52 | case UC_OSX_RALT: | ||
| 53 | register_code(KC_RALT); | ||
| 54 | break; | ||
| 52 | case UC_LNX: | 55 | case UC_LNX: |
| 53 | register_code(KC_LCTL); | 56 | register_code(KC_LCTL); |
| 54 | register_code(KC_LSFT); | 57 | register_code(KC_LSFT); |
| @@ -78,6 +81,9 @@ void unicode_input_finish (void) { | |||
| 78 | case UC_WIN: | 81 | case UC_WIN: |
| 79 | unregister_code(KC_LALT); | 82 | unregister_code(KC_LALT); |
| 80 | break; | 83 | break; |
| 84 | case UC_OSX_RALT: | ||
| 85 | unregister_code(KC_RALT); | ||
| 86 | break; | ||
| 81 | case UC_LNX: | 87 | case UC_LNX: |
| 82 | register_code(KC_SPC); | 88 | register_code(KC_SPC); |
| 83 | unregister_code(KC_SPC); | 89 | unregister_code(KC_SPC); |
diff --git a/quantum/process_keycode/process_unicode_common.h b/quantum/process_keycode/process_unicode_common.h index f5be1da5c..4d2b04fb3 100644 --- a/quantum/process_keycode/process_unicode_common.h +++ b/quantum/process_keycode/process_unicode_common.h | |||
| @@ -37,6 +37,7 @@ void register_hex(uint16_t hex); | |||
| 37 | #define UC_WIN 2 // Windows 'HexNumpad' | 37 | #define UC_WIN 2 // Windows 'HexNumpad' |
| 38 | #define UC_BSD 3 // BSD (not implemented) | 38 | #define UC_BSD 3 // BSD (not implemented) |
| 39 | #define UC_WINC 4 // WinCompose https://github.com/samhocevar/wincompose | 39 | #define UC_WINC 4 // WinCompose https://github.com/samhocevar/wincompose |
| 40 | #define UC_OSX_RALT 5 // Mac OS X using Right Alt key for Unicode Compose | ||
| 40 | 41 | ||
| 41 | #define UC_BSPC UC(0x0008) | 42 | #define UC_BSPC UC(0x0008) |
| 42 | 43 | ||
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 { |
