Skip to content

Instantly share code, notes, and snippets.

@mattmc3
Created March 29, 2019 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattmc3/6411c728417cb8cd28e3d3864533dd94 to your computer and use it in GitHub Desktop.
Save mattmc3/6411c728417cb8cd28e3d3864533dd94 to your computer and use it in GitHub Desktop.
AHK - Colemak remapping
; Colemak layout for AutoHotkey (MS Windows)
#SingleInstance force
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetTitleMatchMode 3 ; Exact matching to avoid confusing T/B with Tab/Backspace.
#Persistent
;top row
e::f
r::p
t::g
y::j
u::l
i::u
o::y
p::`;
;home row
s::r
d::s
f::t
g::d
j::n
k::e
l::i
`;::o
; bottom row
n::k
Capslock::Backspace
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment