We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec1af48 commit f09220dCopy full SHA for f09220d
1 file changed
components/hotkeys.ahk
@@ -36,11 +36,16 @@ prepareUnicodeInserion() {
36
#if unicodeInsertionActive
37
38
Alt up::
39
+ unicodeInsertionActive := false
40
+
41
+ if (characterCodeInput == "") {
42
+ return
43
+ }
44
45
if (inputBase == "dec") {
46
characterCodeInput := format("{:x}", characterCodeInput)
47
}
48
- unicodeInsertionActive := false
49
SendInput {U+%characterCodeInput%}
50
return
51
0 commit comments