]> shimmer.witbreuk.eu Git - UltimateKEYS.git/commitdiff
Add files via upload
authorPieter Degroote <pieter-degroote@users.noreply.github.com>
Mon, 23 May 2022 17:31:42 +0000 (19:31 +0200)
committerGitHub <noreply@github.com>
Mon, 23 May 2022 17:31:42 +0000 (19:31 +0200)
A small error (inconsistency) has been fixed.

autohotkey-v2.0/UltimateKEYS (for AutoHotkey v2.0).ahk

index ee8619a0df51bb233571a751c52ecfaa8da6dfe6..81afa7da4f9685ff552acb19f11f406aef544437 100644 (file)
@@ -740,6 +740,7 @@ dkQuad["3"] := "{u+2001}"  ; em quad
 ; Dead Key :  Arrows and Pointers
 
 global dkArrow := Map()
 ; Dead Key :  Arrows and Pointers
 
 global dkArrow := Map()
+global dkPlus := Map()
 dkArrow["1"] := "{u+2199}"  ; (↙) south west arrow
 dkArrow["2"] := "{u+2193}"  ; (↓) downwards arrow
 dkArrow["3"] := "{u+2198}"  ; (↘) south east arrow
 dkArrow["1"] := "{u+2199}"  ; (↙) south west arrow
 dkArrow["2"] := "{u+2193}"  ; (↓) downwards arrow
 dkArrow["3"] := "{u+2198}"  ; (↘) south east arrow
@@ -760,14 +761,14 @@ dkDoubleAcute["7"] := "{u+21d6}"  ; (⇖) north west double arrow
 dkDoubleAcute["8"] := "{u+21d1}"  ; (⇑) upwards double arrow
 dkDoubleAcute["9"] := "{u+21d7}"  ; (⇗) north east double arrow
 dkDoubleAcute["0"] := "{u+21d4}"  ; (⇔) left right double arrow
 dkDoubleAcute["8"] := "{u+21d1}"  ; (⇑) upwards double arrow
 dkDoubleAcute["9"] := "{u+21d7}"  ; (⇗) north east double arrow
 dkDoubleAcute["0"] := "{u+21d4}"  ; (⇔) left right double arrow
-dkHorn["2"] := "{u+25bc}"  ; (▼) black down-pointing triangle
-dkHorn["@"] := "{u+25bd}"  ; (▽) white down-pointing triangle
-dkHorn["4"] := "{u+25c0}"  ; (◀) black left-pointing triangle
-dkHorn["$"] := "{u+25c1}"  ; (◁) white left-pointing triangle
-dkHorn["6"] := "{u+25b6}"  ; (▶) black right-pointing triangle
-dkHorn["^"] := "{u+25b7}"  ; (▷) white right-pointing triangle
-dkHorn["8"] := "{u+25b2}"  ; (▲) black up-pointing triangle
-dkHorn["*"] := "{u+25b3}"  ; (△) white up-pointing triangle
+dkPlus["2"] := "{u+25bc}"  ; (▼) black down-pointing triangle
+dkPlus["@"] := "{u+25bd}"  ; (▽) white down-pointing triangle
+dkPlus["4"] := "{u+25c0}"  ; (◀) black left-pointing triangle
+dkPlus["$"] := "{u+25c1}"  ; (◁) white left-pointing triangle
+dkPlus["6"] := "{u+25b6}"  ; (▶) black right-pointing triangle
+dkPlus["^"] := "{u+25b7}"  ; (▷) white right-pointing triangle
+dkPlus["8"] := "{u+25b2}"  ; (▲) black up-pointing triangle
+dkPlus["*"] := "{u+25b3}"  ; (△) white up-pointing triangle
 
 
 ; Dead Key :  Miscellaneous Symbols (s)
 
 
 ; Dead Key :  Miscellaneous Symbols (s)
@@ -951,7 +952,6 @@ global dkAsterisk := Map()
 global dkExclam := Map()
 global dkQuestion := Map()
 global dkParenLeft := Map()
 global dkExclam := Map()
 global dkQuestion := Map()
 global dkParenLeft := Map()
-global dkPlus := Map()
 global dkPercent := Map()
 global dkEight := Map()
 global dkLessThan := Map()
 global dkPercent := Map()
 global dkEight := Map()
 global dkLessThan := Map()
@@ -1612,6 +1612,10 @@ dkCapitalU["``"] := "{u+01db}"      ; (Ǜ) U with diaeresis and grave
     if dkArrow.Has(ihB.Input)
       Send dkArrow[ihB.Input]
   }
     if dkArrow.Has(ihB.Input)
       Send dkArrow[ihB.Input]
   }
+  else if (ihA.Input == "+") {
+    if dkPlus.Has(ihB.Input)
+      Send dkPlus[ihB.Input]
+  }
   else if (ihA.Input == "s") {
     if dkSymbols.Has(ihB.Input)
       Send dkSymbols[ihB.Input]
   else if (ihA.Input == "s") {
     if dkSymbols.Has(ihB.Input)
       Send dkSymbols[ihB.Input]
@@ -1716,10 +1720,6 @@ dkCapitalU["``"] := "{u+01db}"      ; (Ǜ) U with diaeresis and grave
     if dkParenLeft.Has(ihB.Input)
       Send dkParenLeft[ihB.Input]
   }
     if dkParenLeft.Has(ihB.Input)
       Send dkParenLeft[ihB.Input]
   }
-  else if (ihA.Input == "+") {
-    if dkPlus.Has(ihB.Input)
-      Send dkPlus[ihB.Input]
-  }
   else if (ihA.Input == "%") {
     if dkPercent.Has(ihB.Input)
       Send dkPercent[ihB.Input]
   else if (ihA.Input == "%") {
     if dkPercent.Has(ihB.Input)
       Send dkPercent[ihB.Input]