Skip to content

Instantly share code, notes, and snippets.

@kozo2
Last active January 20, 2025 03:53
Show Gist options
  • Save kozo2/96dfcfb9b0efa92773f2422630a59397 to your computer and use it in GitHub Desktop.
Save kozo2/96dfcfb9b0efa92773f2422630a59397 to your computer and use it in GitHub Desktop.
#Requires AutoHotkey v2.0
Space::Send "{Space}"
Shift & Space::Send "+{Space}"
Space & a::Send "{Home}"
Space & b::Send "{Left}"
Space & c::Send "^c"
Space & d::Send "{Del}"
Space & e::Send "{End}"
Space & f::Send "{Right}"
Space & h::Send "{BS}"
Space & i::Send "{Tab}"
Space & l::Send "^l"
Space & m::Send "{Enter}"
Space & n::Send "{Down}"
Space & p::Send "{Up}"
Space & r::Send "^r"
Space & s::Send "^s"
Space & t::Send "^t"
Space & v::Send "^v"
Space & w::Send "^w"
Space & x::Send "^x"
Space & z::Send "^z"
Space & 0::Send "^0"
Space & 1::Send "^1"
Space & 2::Send "^2"
Space & 3::Send "^3"
Space & 4::Send "^4"
Space & 5::Send "^5"
Space & 6::Send "^6"
Space & 7::Send "^7"
Space & 8::Send "^8"
Space & 9::Send "^9"
Space & BS::Send "^{BS}"
Space & Tab::Send "^{Tab}"
Space & PgUp::Send "^{PgUp}"
Space & PgDn::Send "^{PgDn}"
Space & `;::Send "{vkF3sc029}"
LCtrl & `;::Send "{vkF3sc029}"
Insert::Send "{Volume_Up}"
Pause::Send "{Volume_Down}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment