summaryrefslogtreecommitdiffstats
path: root/windows/neo-vars/keyhooks.ahk
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--windows/neo-vars/keyhooks.ahk22
1 files changed, 2 insertions, 20 deletions
diff --git a/windows/neo-vars/keyhooks.ahk b/windows/neo-vars/keyhooks.ahk
index 9e269c7..ff818f6 100644
--- a/windows/neo-vars/keyhooks.ahk
+++ b/windows/neo-vars/keyhooks.ahk
@@ -56,6 +56,7 @@
*VKBCSC033:: ; , (,)
*VKBESC034:: ; . (.)
*VKBDSC035:: ; - (j)
+*space::
; Numpad
@@ -163,6 +164,7 @@ numpadenter::
*VKBCSC033 up:: ; , (,)
*VKBESC034 up:: ; . (.)
*VKBDSC035 up:: ; - (j)
+*space up::
; Numpad
@@ -214,23 +216,3 @@ numpadenter up::
AllStar(A_ThisHotkey)
return
-
-*space::
- if ((einHandNeo))
- spacepressed := 1
- else
- AllStar(A_ThisHotkey)
-return
-
-*space up::
- if ((einHandNeo)) {
- if ((keypressed)) {
- keypressed := 0
- spacepressed := 0
- } else {
- AllStar("space") ;???
- AllStar("space up")
- }
- } else
- AllStar(A_ThisHotkey)
-return