From 7b92596937cd7edc612844c93408b25dd2cb5b7e Mon Sep 17 00:00:00 2001 From: sparksThefire Date: Tue, 5 Apr 2022 17:59:32 -0500 Subject: [PATCH] Fix WinCompose usage WinCompose requires the `enter` key to be typed at the end of a special unicode character. In order to help print emojis and emoticons in a windows environment, I have added the enter key to the Windows compose unicode sequence method. I have tested this with my local keyboard. --- kmk/handlers/sequences.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kmk/handlers/sequences.py b/kmk/handlers/sequences.py index 27b8d09..936c17e 100644 --- a/kmk/handlers/sequences.py +++ b/kmk/handlers/sequences.py @@ -152,3 +152,4 @@ def _winc_unicode_sequence(kc_macros, keyboard): yield RALT_KEY yield U_KEY yield kc_macro + yield ENTER_KEY