Skip to content

Instantly share code, notes, and snippets.

@cptpiepmatz
Created February 3, 2024 23:04
Show Gist options
  • Save cptpiepmatz/726e0e98db7f2d5b0508d2b34d83553b to your computer and use it in GitHub Desktop.
Save cptpiepmatz/726e0e98db7f2d5b0508d2b34d83553b to your computer and use it in GitHub Desktop.
I like to play with my mouse in the left hand. This AutoHotkey script maps some inputs which are comfortable for me to keys used by Palword.
#SingleInstance Force
#HotIf WinActive("Pal")
; Clone Right Modifier to Left Ones
RCtrl::LCtrl
RShift::LShift
; Remap Numpad Numbers (0-9) to Their Top-Row Counterparts
Numpad0::0
Numpad1::1
; Except Numpad2, Remapped to F
Numpad3::3
Numpad4::4
Numpad5::5
Numpad6::6
Numpad7::7
Numpad8::8
Numpad9::9
; Remap Numpad Comma to Comma
NumpadDot::,
; Overload Bind to F
Numpad2::f
!f UP:: Send "{f Down}"
; Keys on Mouse Also Mapped to F and B
F13::f
F14::b
; Open Inventory with I
i::Tab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment