From: Pieter Degroote Date: Wed, 25 May 2022 23:07:17 +0000 (+0200) Subject: Add files via upload X-Git-Url: https://shimmer.witbreuk.eu/gitweb/UltimateKEYS.git/commitdiff_plain/abb28e2178a1a5d514372203e5d470ed0e28ba9d?ds=sidebyside Add files via upload A small error has been fixed in the AutoHotkey versions ('Compose -> p -> p' now works as expected: ¶ (pilcrow sign)). --- diff --git a/autohotkey-v2.0/UltimateKEYS (for AutoHotkey v2.0).ahk b/autohotkey-v2.0/UltimateKEYS (for AutoHotkey v2.0).ahk index fadea06..5fd5513 100644 --- a/autohotkey-v2.0/UltimateKEYS (for AutoHotkey v2.0).ahk +++ b/autohotkey-v2.0/UltimateKEYS (for AutoHotkey v2.0).ahk @@ -941,7 +941,6 @@ cmpCapitalT["H"] := "{u+00de}" ; (Þ) capital letter thorn global cmpSmallN := Map() global cmpCapitalN := Map() -global cmpSmallP := Map() global cmpCapitalP := Map() global cmpSmallR := Map() global cmpAsterisk := Map() @@ -963,7 +962,7 @@ cmpMathSymbols["i"] := "{u+00b5}" ; (µ) micro sign cmpSmallN["o"] := "{u+2116}" ; (№) numero sign cmpCapitalN["o"] := "{u+2116}" ; (№) numero sign cmpRingAbove["x"] := "{u+00a4}" ; (¤) currency sign -cmpSmallP["p"] := "{u+00b6}" ; (¶) pilcrow sign +cmpSuperscript["p"] := "{u+00b6}" ; (¶) pilcrow sign cmpCapitalP["P"] := "{u+00b6}" ; (¶) pilcrow sign cmpSmallR["2"] := "{u+221a}" ; (√) square root cmpSmallR["3"] := "{u+221b}" ; (∛) cube root @@ -1037,7 +1036,7 @@ cmpGreaterThan["'"] := "{u+203a}" ; (›) right-pointing single angle quo cmpAcuteAccent[">"] := "{u+203a}" ; (›) right-pointing single angle quotation mark -; Compose : Letters with Two Accents +; Compose : Letters with Two Diacritical Marks global cmpCapitalU := Map() cmpArrow[chr(34)] := "{u+01df}" ; (ǟ) a with diaeresis and macron @@ -1690,10 +1689,6 @@ cmpCapitalU["``"] := "{u+01db}" ; (Ǜ) U with diaeresis and grave if cmpCapitalN.Has(ihB.Input) Send cmpCapitalN[ihB.Input] } - else if (ihA.Input == "p") { - if cmpSmallP.Has(ihB.Input) - Send cmpSmallP[ihB.Input] - } else if (ihA.Input == "P") { if cmpCapitalP.Has(ihB.Input) Send cmpCapitalP[ihB.Input]