Last active
April 25, 2020 23:12
-
-
Save edfungus/55adb9d6315619d8a7cc9225c75712cf to your computer and use it in GitHub Desktop.
Autohotkey script for for better home/end/esc navigation for Dell XPS 7390
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
; Put in C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup | |
; 1 to 1 remaps | |
CapsLock::Esc | |
PgUp::Left | |
PgDn::Right | |
; ctrl remaps | |
; ctrl + [right, left, pageup, pagedown] => home or end | |
$^Left:: | |
Keywait,Left | |
Send,{Home} | |
Return | |
$^Right:: | |
Keywait,Right | |
Send,{End} | |
Return | |
$^PgUp:: | |
Keywait,PgUp | |
Send,{Home} | |
Return | |
$^PgDn:: | |
Keywait,PgDn | |
Send,{End} | |
Return | |
; left alt remaps | |
; left alt + [right, left, pageup, pagedown] => home or end | |
$<!Left:: | |
Keywait,Left | |
Send,{Home} | |
Return | |
$<!Right:: | |
Keywait,Right | |
Send,{End} | |
Return | |
$<!PgUp:: | |
Keywait,PgUp | |
Send,{Home} | |
Return | |
$<!PgDn:: | |
Keywait,PgDn | |
Send,{End} | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment