summaryrefslogtreecommitdiffstats
path: root/windows/autohotkey/Source/Methods-Other.ahk
diff options
context:
space:
mode:
authormartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-09-12 02:36:48 +0000
committermartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-09-12 02:36:48 +0000
commit46350c599e49e360b067ff3dea65e539b9266cb2 (patch)
tree90e19d78340299af621ed1d1128186f590d9275b /windows/autohotkey/Source/Methods-Other.ahk
parentb66c24b4eee4ac9e6dcf92af6a5fb7d229b11183 (diff)
ahk: 253 Cokos.
Methods-Other.ahk aufgeräumt. 2er-Coko+Coko-Fehler ausgebessert. Compose.neo: Benennung angepasst und Fehler korrigiert. git-svn-id: https://svn.neo-layout.org@864 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'windows/autohotkey/Source/Methods-Other.ahk')
-rw-r--r--windows/autohotkey/Source/Methods-Other.ahk78
1 files changed, 1 insertions, 77 deletions
diff --git a/windows/autohotkey/Source/Methods-Other.ahk b/windows/autohotkey/Source/Methods-Other.ahk
index fbbcad5..0ef9d77 100644
--- a/windows/autohotkey/Source/Methods-Other.ahk
+++ b/windows/autohotkey/Source/Methods-Other.ahk
@@ -75,29 +75,12 @@ CheckCompAsc(d,val) {
if !DeadCompose
send {bs}
send % val
+ CompKey = 0
isFurtherCompKey = 0
return 1
}
}
-CheckCompAsc12(d,val1,val2) {
- global
- if (PriorCompKey == d)
- if (Ebene = 1) and (val1 != "") {
- if !DeadCompose
- send {bs}
- send % val1
- isFurtherCompKey = 0
- return 1
- } else if (Ebene = 2) and (val2 != "") {
- if !DeadCompose
- send {bs}
- send % val2
- isFurtherCompKey = 0
- return 1
- }
-}
-
CheckCompUni(d,val) {
global
if (PriorCompKey == d) {
@@ -111,65 +94,6 @@ CheckCompUni(d,val) {
}
}
-CheckCompUni12(d,val1,val2){
- global
- if (PriorCompKey == d) {
- if (Ebene = 1) and (val1 != "") {
- PriorCompKey =
- CompKey =
- if !DeadCompose
- send {bs}
- isFurtherCompkey = 0
- SendUnicodeChar(val1)
- return 1
- } else if (Ebene = 2) and (val2 != "") {
- PriorCompKey =
- CompKey =
- if !DeadCompose
- send {bs}
- isFurtherCompkey = 0
- SendUnicodeChar(val2)
- return 1
- }
- }
-}
-
-CheckComp3Uni(d,val) {
- global
- if (PriorCompKey == d) {
- PriorCompKey =
- CompKey =
- if !DeadCompose
- send {bs}{bs}
- isFurtherCompkey = 0
- SendUnicodeChar(val)
- return 1
- }
-}
-
-CheckComp3Uni12(d,val1,val2) {
- global
- if (PriorCompKey == d) {
- if (Ebene = 1) and (val1 != "") {
- PriorCompKey =
- CompKey =
- if !DeadCompose
- send {bs}{bs}
- isFurtherCompkey = 0
- SendUnicodeChar(val1)
- return 1
- } else if (Ebene = 2) and (val2 != "") {
- PriorCompKey =
- CompKey =
- if !DeadCompose
- send {bs}{bs}
- isFurtherCompkey = 0
- SendUnicodeChar(val2)
- return 1
- }
- }
-}
-
OutputChar(val) {
global
if !(CheckComp(val) and DeadCompose)