summaryrefslogtreecommitdiffstats
path: root/windows/autohotkey/Source/Keys-Neo.ahk
diff options
context:
space:
mode:
authormartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-10-02 22:53:18 +0000
committermartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-10-02 22:53:18 +0000
commitdab75337e2e93865bb367857d06e0a0fbc9e77b5 (patch)
treeeeee7032db4826fd60df9c615afc3bbaea821372 /windows/autohotkey/Source/Keys-Neo.ahk
parent3eaaee9d72a00a58a545df70457da029a2b2177d (diff)
Ticket #53 eingearbeitet, Compose.ahk aktualisiert
git-svn-id: https://svn.neo-layout.org@929 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'windows/autohotkey/Source/Keys-Neo.ahk')
-rw-r--r--windows/autohotkey/Source/Keys-Neo.ahk9
1 files changed, 6 insertions, 3 deletions
diff --git a/windows/autohotkey/Source/Keys-Neo.ahk b/windows/autohotkey/Source/Keys-Neo.ahk
index d7de34a..49cf50f 100644
--- a/windows/autohotkey/Source/Keys-Neo.ahk
+++ b/windows/autohotkey/Source/Keys-Neo.ahk
@@ -636,7 +636,7 @@ neo_d:
else if (Ebene = 3)
OutputChar(":", "colon")
else if (Ebene = 4)
- OutputChar("`,", "comma")
+ OutputChar("{NumpadDot}", "comma")
else if (Ebene = 5)
SendUnicodeChar(0x03B4, "Greek_delta") ; delta
else if (Ebene = 6)
@@ -1059,8 +1059,11 @@ return
*/
*Enter::
+ EbeneAktualisieren()
if !lernModus or lernModus_std_Return {
- send {Blind}{Enter}
+ if (Ebene = 4)
+ send {blind}{NumpadEnter}
+ else send {blind}{Enter}
DeadKey := ""
CompKey := ""
} return
@@ -1091,7 +1094,7 @@ neo_tab:
DeadKey := "comp"
CompKey := ""
} else {
- send {blind}{Tab}
+ OutputChar("{Tab}","Tab")
DeadKey := ""
CompKey := ""
} return