]> shimmer.witbreuk.eu Git - UltimateKEYS.git/blobdiff - autohotkey-v1.1/UltimateKEYS.ahk
Add files via upload
[UltimateKEYS.git] / autohotkey-v1.1 / UltimateKEYS.ahk
index 0ed138c570591d07cb6d9392f531fb8fa6d32c7a..eff842852549a62dde6b059751262aa26d356aab 100644 (file)
@@ -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
@@ -208,7 +210,6 @@ cmpMacronStrokeAdd.item["u"] := "{u+0289}"  ; (ʉ) u with bar
 cmpMacronStrokeAdd.item["U"] := "{u+0244}"  ; (Ʉ) U with bar
 cmpMacronStrokeAdd.item["y"] := "{u+024f}"  ; (ɏ) y with stroke
 cmpMacronStrokeAdd.item["Y"] := "{u+024e}"  ; (Ɏ) Y with stroke
-cmpMacronStrokeAdd.item[" "] := "{u+00af}"  ; (¯) macron
 
 
 ; Compose :  Stroke (/)
@@ -372,6 +373,7 @@ cmpAcuteAccent.item["f"] := "{u+01fd}"  ; (ǽ) ae with acute
 cmpAcuteAccent.item["F"] := "{u+01fc}"  ; (Ǽ) AE with acute
 cmpAcuteAccent.item["q"] := "{u+01ff}"  ; (ǿ) o with stroke and acute
 cmpAcuteAccent.item["Q"] := "{u+01fe}"  ; (Ǿ) O with stroke and acute
+cmpAcuteAccent.item[" "] := "{u+00b4}"  ; (´) acute accent
 
 
 ; Compose :  Diaeresis (")
@@ -459,6 +461,8 @@ cmpTilde.item["e"] := "{u+1ebd}"  ; (ẽ) e with tilde
 cmpTilde.item["E"] := "{u+1ebc}"  ; (Ẽ) E with tilde
 cmpTilde.item["i"] := "{u+0129}"  ; (ĩ) i with tilde
 cmpTilde.item["I"] := "{u+0128}"  ; (Ĩ) I with tilde
+cmpTilde.item["l"] := "{u+026b}"  ; (ɫ) l with middle tilde
+cmpTilde.item["L"] := "{u+2c62}"  ; (Ɫ) L with middle tilde
 cmpTilde.item["n"] := "{u+00f1}"  ; (ñ) n with tilde
 cmpTilde.item["N"] := "{u+00d1}"  ; (Ñ) N with tilde
 cmpTilde.item["o"] := "{u+00f5}"  ; (õ) o with tilde
@@ -469,7 +473,7 @@ cmpTilde.item["v"] := "{u+1e7d}"  ; (ṽ) v with tilde
 cmpTilde.item["V"] := "{u+1e7c}"  ; (Ṽ) V with tilde
 cmpTilde.item["y"] := "{u+1ef9}"  ; (ỹ) y with tilde
 cmpTilde.item["Y"] := "{u+1ef8}"  ; (Ỹ) Y with tilde
-cmpTilde.item[" "] := "{u+02dc}"  ; (˜) tilde
+cmpTilde.item[" "] := "{u+02dc}"  ; (˜) small tilde
 
 
 ; Compose :  Hook and Latin Greek Letters (h)
@@ -935,7 +939,6 @@ cmpCapitalT.item["H"] := "{u+00de}"         ; (Þ) capital letter thorn
 
 cmpSmallN := ComObjCreate("Scripting.Dictionary")
 cmpCapitalN := ComObjCreate("Scripting.Dictionary")
-cmpSmallP := ComObjCreate("Scripting.Dictionary")
 cmpCapitalP := ComObjCreate("Scripting.Dictionary")
 cmpSmallR := ComObjCreate("Scripting.Dictionary")
 cmpAsterisk := ComObjCreate("Scripting.Dictionary")
@@ -957,7 +960,7 @@ cmpMathSymbols.item["i"] := "{u+00b5}"      ; (µ) micro sign
 cmpSmallN.item["o"] := "{u+2116}"           ; (№) numero sign
 cmpCapitalN.item["o"] := "{u+2116}"         ; (№) numero sign
 cmpRingAbove.item["x"] := "{u+00a4}"        ; (¤) currency sign
-cmpSmallP.item["p"] := "{u+00b6}"           ; (¶) pilcrow sign
+cmpSuperscript.item["p"] := "{u+00b6}"      ; (¶) pilcrow sign
 cmpCapitalP.item["P"] := "{u+00b6}"         ; (¶) pilcrow sign
 cmpSmallR.item["2"] := "{u+221a}"           ; (√) square root
 cmpSmallR.item["3"] := "{u+221b}"           ; (∛) cube root
@@ -1031,7 +1034,7 @@ cmpGreaterThan.item["'"] := "{u+203a}"        ; (›) right-pointing single angl
 cmpAcuteAccent.item[">"] := "{u+203a}"        ; (›) right-pointing single angle quotation mark
 
 
-; Compose :  Letters with Two Accents
+; Compose :  Letters with Two Diacritical Marks
 
 cmpCapitalU := ComObjCreate("Scripting.Dictionary")
 cmpArrow.item[chr(34)] := "{u+01df}"      ; (ǟ) a with diaeresis and macron
@@ -1587,8 +1590,6 @@ cmpCapitalU.item["``"] := "{u+01db}"      ; (Ǜ) U with diaeresis and grave
     Send % cmpSmallN.item[keyB]
   else if (keyA == "N")
     Send % cmpCapitalN.item[keyB]
-  else if (keyA == "p")
-    Send % cmpSmallP.item[keyB]
   else if (keyA == "P")
     Send % cmpCapitalP.item[keyB]
   else if (keyA == "r")