From 3eec40cb4f5041f2473c34b92db962c26aed81fb Mon Sep 17 00:00:00 2001 From: Pieter Degroote Date: Mon, 23 May 2022 22:23:54 +0200 Subject: [PATCH 1/1] Add files via upload MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The a/A with ring above (å/Å) has also been added to the compose sequence. --- autohotkey-v1.1/UltimateKEYS.ahk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autohotkey-v1.1/UltimateKEYS.ahk b/autohotkey-v1.1/UltimateKEYS.ahk index 0ed138c..88ea143 100644 --- a/autohotkey-v1.1/UltimateKEYS.ahk +++ b/autohotkey-v1.1/UltimateKEYS.ahk @@ -147,6 +147,8 @@ cmpDotAbove.item["Z"] := "{u+017b}" ; (Ż) Z with dot above ; Compose : Ring Above (o) cmpRingAbove := ComObjCreate("Scripting.Dictionary") +cmpRingAbove.item["a"] := "{u+00e5}" ; (å) a with ring above +cmpRingAbove.item["A"] := "{u+00c5}" ; (Å) A with ring above cmpRingAbove.item["u"] := "{u+016f}" ; (ů) u with ring above cmpRingAbove.item["U"] := "{u+016e}" ; (Ů) U with ring above cmpRingAbove.item["w"] := "{u+1e98}" ; (ẘ) w with ring above -- 2.47.3