-
Notifications
You must be signed in to change notification settings - Fork 3
/
xlr-space.ahk
57 lines (48 loc) · 1.22 KB
/
xlr-space.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
; *** space
space::Send {space}
^space::Send ^{space}
+space::Send +{space}
#space::Send #{space}
^#space::Send ^#{space}
!space::Send !{space}
^!space::Send ^!{space}
; *** space + Num
space & 1::Send {space}
space & 2::Send {space}{space}
space & 3::Send {space}{space}{space}
space & 4::Send {space}{space}{space}{space}
space & 5::Send {space}{space}{space}{space}{space}
space & 6::Send {space}{space}{space}{space}{space}{space}
space & 7::Send {space}{space}{space}{space}{space}{space}{space}
space & 8::Send {space}{space}{space}{space}{space}{space}{space}{space}
space & 9::Send {space}{space}{space}{space}{space}{space}{space}{space}{space}
; *** space + [] (windows virual desktop switcher)
space & [::Send ^#{left}
space & ]::Send ^#{right}
; *** space + XX
#if GetKeyState("space", "P")
f & k:: Send +{up}
f & h:: Send +{left}
f & j:: Send +{down}
f & l:: Send +{right}
d & k:: Send ^{up}
d & h:: Send ^{left}
d & j:: Send ^{down}
d & l:: Send ^{right}
;g & i:: Send ^+{up}
g & h:: Send ^+{left}
;g & k:: Send ^+{down}
g & l:: Send ^+{right}
k:: Send {up}
h:: Send {left}
j:: Send {down}
l:: Send {right}
y:: Send {home}
o:: Send {end}
u:: Send {Pgup}
i:: Send {Pgdn}
c:: Send ^c
x:: Send ^x
v:: Send ^v
z:: Send ^z
return