Last active
March 12, 2026 14:29
-
-
Save y13i/66944443cf0ab81713ff5bd322d6d0f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #SingleInstance force | |
| #NoEnv | |
| #Warn | |
| SendMode Input | |
| SetWorkingDir %A_ScriptDir% | |
| sc03A & a::Send {Home} | |
| sc03A & b::Send {Left} | |
| sc03A & c::Send ^{c} | |
| sc03A & d::Send {Del} | |
| sc03A & e::Send {End} | |
| sc03A & f::Send {Right} | |
| sc03A & g::Send ^{g} | |
| sc03A & h::Send {BackSpace} | |
| sc03A & i::Send ^{i} | |
| sc03A & j::Send {Enter} | |
| sc03A & k::Send +{End}{Del} | |
| sc03A & l::Send ^{l} | |
| sc03A & m::Send ^{m} | |
| sc03A & n::Send {Down} | |
| sc03A & o::Send ^{o} | |
| sc03A & p::Send {Up} | |
| sc03A & q::Send ^{q} | |
| sc03A & r::Send ^{r} | |
| sc03A & s::Send ^{s} | |
| sc03A & t::Send ^{t} | |
| sc03A & u::Send ^{u} | |
| sc03A & v::Send ^{v} | |
| sc03A & w::Send ^{w} | |
| sc03A & x::Send ^{x} | |
| sc03A & y::Send ^{y} | |
| sc03A & z::Send ^{z} | |
| sc03A & 1::Send ^{1} | |
| sc03A & 2::Send ^{2} | |
| sc03A & 3::Send ^{3} | |
| sc03A & 4::Send ^{4} | |
| sc03A & 5::Send ^{5} | |
| sc03A & 6::Send ^{6} | |
| sc03A & 7::Send ^{7} | |
| sc03A & 8::Send ^{8} | |
| sc03A & 9::Send ^{9} | |
| sc03A & 0::Send ^{0} | |
| sc03A & -::Send ^{-} | |
| sc03A & =::Send ^{=} | |
| sc03A & [::Send ^{[} | |
| sc03A & ]::Send ^{]} | |
| sc03A & '::Send ^{'} | |
| sc03A & ,::Send ^{,} | |
| sc03A & .::Send ^{.} | |
| sc03A & /::Send ^{/} | |
| sc03A & Enter::Send ^{Enter} | |
| sc03A & Tab:: | |
| If (GetKeyState("Shift", "P")) | |
| Send +^{Tab} | |
| Else | |
| Send ^{Tab} | |
| Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment