-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKeyBlocking.ahk
88 lines (81 loc) · 1.27 KB
/
KeyBlocking.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
; Block keys and combinations that insert/delete text
*a::return
*b::return
*c::return
*d::return
*e::return
*f::return
*g::return
*h::return
*i::return
*j::return
*k::return
*l::return
*m::return
*n::return
*o::return
*p::return
*q::return
*r::return
*s::return
*t::return
*u::return
*v::return
*w::return
*x::return
*y::return
*z::return
*0::return
*1::return
*2::return
*3::return
*4::return
*5::return
*6::return
*7::return
*8::return
*9::return
*Numpad0::return
*Numpad1::return
*Numpad2::return
*Numpad3::return
*Numpad4::return
*Numpad5::return
*Numpad6::return
*Numpad7::return
*Numpad8::return
*Numpad9::return
*NumpadIns::return
*NumpadEnd::return
*NumpadDown::return
*NumpadPgDn::return
*NumpadLeft::return
*NumpadClear::return
*NumpadRight::return
*NumpadHome::return
*NumpadUp::return
*NumpadPgUp::return
*NumpadDot::return
*NumpadDel::return
*NumpadDiv::return
*NumpadMult::return
*NumpadAdd::return
*NumpadSub::return
*NumpadEnter::return
*,::return
*.::return
*-::return
*$::return
*'::return
*^::return
*<::return
;TODO: More variations for other keyboard layouts
*Backspace::return
; Variations of Tab, except ctrl or alt variation
*Tab::return
~*^Tab::return
~*!Tab::return
; Variations of Space, except ctrl or alt variation
*Space::return
~*^Space::return
~*!Space::return