Last active
September 19, 2024 11:24
-
-
Save arnoson/4a5c8240bd531aa9c7891fc7590920b4 to your computer and use it in GitHub Desktop.
Simple AutoHotKey v2 Extend Layer
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
; 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