Skip to content

Instantly share code, notes, and snippets.

@arnoson
Last active September 19, 2024 11:24
Show Gist options
  • Save arnoson/4a5c8240bd531aa9c7891fc7590920b4 to your computer and use it in GitHub Desktop.
Save arnoson/4a5c8240bd531aa9c7891fc7590920b4 to your computer and use it in GitHub Desktop.
Simple AutoHotKey v2 Extend Layer
; Extend Layer
; Based on https://dreymar.colemak.org/layers-extend.html
#Requires AutoHotkey v2.0
#SingleInstance Force
SetCapsLockState("AlwaysOff")
#HotIf GetKeyState("CapsLock", "P")
; Modifiers
a::Alt
d::Shift
; Commands
f::Ctrl
z::^z
x::^x
c::^c
v::^v
; Arrows
i::Up
k::Down
j::Left
l::Right
; Navigation
w::WheelUp
s::WheelDown
u::Home
o::End
y::PgUp
h::PgDn
; Misc
q::Esc
`;::BackSpace
'::AppsKey
Space::^Space
#HotIf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment