40 lines
456 B
Markdown
40 lines
456 B
Markdown
|
```ahk
|
||
|
SetCapsLockState, AlwaysOff
|
||
|
|
||
|
#If GetKeyState("Capslock","P")
|
||
|
;방향키제어
|
||
|
i::Up
|
||
|
j::Left
|
||
|
k::Down
|
||
|
l::Right
|
||
|
n::Home
|
||
|
m::End
|
||
|
h::^Left
|
||
|
;::^Right
|
||
|
|
||
|
u::BackSpace
|
||
|
o::Del
|
||
|
|
||
|
w::Send, {Up}{Up}{Up}{Up}{Up}{Up}
|
||
|
d::Send, {Down}{Down}{Down}{Down}{Down}{Down}
|
||
|
|
||
|
;ctrl키 기능
|
||
|
v::^v
|
||
|
c::^c
|
||
|
a::^a
|
||
|
f::^f
|
||
|
z::^z
|
||
|
s::^s
|
||
|
x::^x
|
||
|
|
||
|
;가상데스크톱제어
|
||
|
r::Send, #^d
|
||
|
e::Send, #^{Right}
|
||
|
q::Send, #^{Left}
|
||
|
t::Send, ^#{F4}
|
||
|
|
||
|
|
||
|
`::CapsLock
|
||
|
#If
|
||
|
|
||
|
```
|