diff options
author | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2016-10-23 19:15:33 +0700 |
---|---|---|
committer | Priyadi Iman Nurcahyo <priyadi@priyadi.net> | 2016-10-23 19:15:33 +0700 |
commit | 4a666c201007eacf13a9031e3c9b156e2e04afe6 (patch) | |
tree | 6085cdddafe606f1a4f4a0425bd30f4dea48404c /quantum/process_keycode/process_unicode.c | |
parent | 2e2b9962cdc20e9f46dd0194f25a68ffa05e7d36 (diff) | |
download | qmk_firmware-4a666c201007eacf13a9031e3c9b156e2e04afe6.tar.gz qmk_firmware-4a666c201007eacf13a9031e3c9b156e2e04afe6.zip |
Unicode WinCompose input method
Diffstat (limited to 'quantum/process_keycode/process_unicode.c')
-rw-r--r-- | quantum/process_keycode/process_unicode.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_unicode.c b/quantum/process_keycode/process_unicode.c index 37dd471ff..2a991cb39 100644 --- a/quantum/process_keycode/process_unicode.c +++ b/quantum/process_keycode/process_unicode.c | |||
@@ -42,6 +42,11 @@ void unicode_input_start (void) { | |||
42 | register_code(KC_PPLS); | 42 | register_code(KC_PPLS); |
43 | unregister_code(KC_PPLS); | 43 | unregister_code(KC_PPLS); |
44 | break; | 44 | break; |
45 | case UC_WINC: | ||
46 | register_code(KC_RALT); | ||
47 | unregister_code(KC_RALT); | ||
48 | register_code(KC_U); | ||
49 | unregister_code(KC_U); | ||
45 | } | 50 | } |
46 | wait_ms(UNICODE_TYPE_DELAY); | 51 | wait_ms(UNICODE_TYPE_DELAY); |
47 | } | 52 | } |