Skip to content

Instantly share code, notes, and snippets.

@renyu-io
Last active January 10, 2022 06:32
Show Gist options
  • Save renyu-io/148df330fe54dcd42061 to your computer and use it in GitHub Desktop.
Save renyu-io/148df330fe54dcd42061 to your computer and use it in GitHub Desktop.
Autohotkey for HHKB Windows (MAC OSX compatible)
; 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