Last active
January 10, 2022 06:32
-
-
Save renyu-io/148df330fe54dcd42061 to your computer and use it in GitHub Desktop.
Autohotkey for HHKB Windows (MAC OSX compatible)
This file contains 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
; EMACS | |
^a::Send {Home} | |
^e::Send {End} | |
^b::Send {Left} | |
$^f::Send {Right} | |
^n::Send {Down} | |
^p::Send {Up} | |
^d::Send {Delete} | |
^h::Send {Backspace} | |
^k:: | |
Send {Shift down} | |
Send {End} | |
Send {Shift up} | |
Send {Delete} | |
return | |
; SYSTEM | |
#a::^a | |
#n::^n | |
#o::^o | |
^o:: return | |
#s::^s | |
^s:: return | |
#c::^c | |
^c:: return | |
#v::^v | |
^v:: return | |
#x::^x | |
^x:: return | |
#y::^y | |
^y:: return | |
#z::^z | |
^z:: return | |
#f::^f | |
#t::^t | |
^t:: return | |
#w::^w | |
^w:: return | |
#q::Send, !{F4} | |
#m::WinMinimize,a | |
#space::Send, ^{Space} | |
#f:: | |
Send, ^f | |
KeyWait, f | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment