Skip to content

Instantly share code, notes, and snippets.

@t2ym
Last active November 4, 2016 08:50
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 t2ym/bcac95247858fa365d81c0069bc578c7 to your computer and use it in GitHub Desktop.
Save t2ym/bcac95247858fa365d81c0069bc578c7 to your computer and use it in GitHub Desktop.
FILCO Minila-like key mappings with Left Windows key for AutoHotKey assisted by SharpKeys
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=hex:00,00,00,00,00,00,00,00,03,00,00,00,5d,e0,5b,e0,5b,e0,38,e0,\
00,00,00,00
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
;SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
AppsKey & e::Send, {Blind}{Up}
AppsKey & s::Send, {Blind}{Left}
AppsKey & d::Send, {Blind}{Down}
AppsKey & f::Send, {Blind}{Right}
AppsKey & m::Send, {Blind}{Delete}
AppsKey & j::Send, {Blind}{Ins}
AppsKey & k::Send, {Blind}{Home}
AppsKey & ,::Send, {Blind}{End}
AppsKey & l::Send, {Blind}{PgUp}
AppsKey & .::Send, {Blind}{PgDn}
AppsKey & `;::Send, {Blind}{Backspace}
AppsKey & /::Send, {Blind}{Enter}
AppsKey & 1::Send, {LWin Down}1{LWin Up}
AppsKey & 2::Send, {LWin Down}2{LWin Up}
AppsKey & 3::Send, {LWin Down}3{LWin Up}
AppsKey & 4::Send, {LWin Down}4{LWin Up}
AppsKey & 5::Send, {LWin Down}5{LWin Up}
AppsKey & 6::Send, {LWin Down}6{LWin Up}
AppsKey & 7::Send, {LWin Down}7{LWin Up}
AppsKey & 8::Send, {LWin Down}8{LWin Up}
AppsKey & 9::Send, {LWin Down}9{LWin Up}
AppsKey & `::Send, {Blind}{Esc}
AppsKey & w::Send, {Blind}{LWin}
AppsKey & x::Send, {LShift Down}{Delete}{LShift Up}
AppsKey & c::Send, {LCtrl Down}{Ins}{LCtrl Up}
AppsKey & v::Send, {LShift Down}{Ins}{LShift Up}
AppsKey & Left::Send, {LWin Down}{Left}{LWin Up}
AppsKey & Right::Send, {LWin Down}{Right}{LWin Up}
AppsKey & Up::Send, {LWin Down}{Up}{LWin Up}
AppsKey & Down::Send, {LWin Down}{Down}{LWin Up}
;CapsLock::Send, {LAlt Down}{LShift Down}{LShift Up}{LAlt Up}
;<+CapsLock::Send, {CapsLock}
@t2ym
Copy link
Author

t2ym commented Nov 4, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment