Skip to content

Instantly share code, notes, and snippets.

@edfungus
Last active April 25, 2020 23:12
Show Gist options
  • Save edfungus/55adb9d6315619d8a7cc9225c75712cf to your computer and use it in GitHub Desktop.
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
; 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