summaryrefslogtreecommitdiffstats
path: root/windows/autohotkey/Source/Keys-Special.ahk
diff options
context:
space:
mode:
authormartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-10-27 19:39:39 +0000
committermartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-10-27 19:39:39 +0000
commita79f538254e2ee4044e4a2022df1246346e82c53 (patch)
tree07cd511f0f4f9ec147d431039043eaf014df3402 /windows/autohotkey/Source/Keys-Special.ahk
parent686cd202edb3b2ff922889cd62732ea4de9d5fee (diff)
Anpassung an die Referenz
git-svn-id: https://svn.neo-layout.org@1046 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'windows/autohotkey/Source/Keys-Special.ahk')
-rw-r--r--windows/autohotkey/Source/Keys-Special.ahk11
1 files changed, 6 insertions, 5 deletions
diff --git a/windows/autohotkey/Source/Keys-Special.ahk b/windows/autohotkey/Source/Keys-Special.ahk
index c9633b8..70c15cc 100644
--- a/windows/autohotkey/Source/Keys-Special.ahk
+++ b/windows/autohotkey/Source/Keys-Special.ahk
@@ -4,7 +4,7 @@ neo_punkt:
if (Ebene = 1)
OutputChar(".", "period")
else if (Ebene = 2)
- SendUnicodeChar("0x2026", "ellipsis") ; Ellipse
+ SendUnicodeChar(0x2023, "") ; Dreieckiges Aufzählungszeichen
else if (Ebene = 3)
OutputChar("'", "apostrophe")
else if ((Ebene = 4) and !(CheckDeadUni("c1",0x00B3)
@@ -22,7 +22,7 @@ neo_komma:
if (Ebene = 1)
OutputChar(",", "comma")
else if (Ebene = 2)
- SendUnicodeChar(0x22EE, "U22EE") ; vertikale Ellipse
+ OutputChar("•", "enfilledcircbullet") ; Bullet
else if (Ebene = 3)
OutputChar(Chr(34), "quotedbl")
else if ((Ebene = 4) and !(CheckDeadUni("c1",0x00B2)
@@ -31,7 +31,7 @@ neo_komma:
else if (Ebene = 5)
SendUnicodeChar(0x03C1, "Greek_rho") ; rho
else if (Ebene = 6)
- SendUnicodeChar(0x21D0, "U21D0") ; Doppelpfeil links
+ SendUnicodeChar(0x21D2, "implies") ; Doppelpfeil rechts
return
neo_strich:
@@ -110,11 +110,12 @@ return
return
neo_tab:
- if (IsMod3Pressed()) { ; Compose!
+ EbeneAktualisieren()
+ if IsMod3Pressed() { ; Compose!
DeadKey := "comp"
CompKey := ""
} else {
- OutputChar("{Tab}","Tab")
+ OutputChar("{Tab}", "Tab")
DeadKey := ""
CompKey := ""
} return