Skip to content

Instantly share code, notes, and snippets.

@miredirex
Last active August 18, 2023 09:16
Show Gist options
  • Select an option

  • Save miredirex/1b6e86a7c2df975fa966d032d8dedeb4 to your computer and use it in GitHub Desktop.

Select an option

Save miredirex/1b6e86a7c2df975fa966d032d8dedeb4 to your computer and use it in GitHub Desktop.
AutoHotkey Alt+IJKL as arrows... and more!
#Requires AutoHotkey v2.0
; Optimizations
ProcessSetPriority "High"
ListLines 0
SetDefaultMouseSpeed 0
SetControlDelay 0
SetKeyDelay 0
SetMouseDelay 0
!i::Up
!k::Down
!j::Left
!l::Right
!u::Home
!o::End
!/::Delete
![::XButton1 ; To navigate back
!]::XButton2 ; To navigate forward
^!/::{
KeyWait "LCtrl" ; This will avoid triggering Ctrl+Alt+Del
Send "^{Delete}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment