Greetings all!
I have a decent sized AHK script that contains multiple hotkeys and functions I use throughout the day. What I've found, however, is that from time to time, some of these hotkeys cease functioning.
As such, I've had to add in a "Reload" hotkey snippet that I can call that restores the other hotkeys and text replacements to function.
; Reload script
^!+x:: {
Reload
return
}
Is there a better way to do this, or to prevent the hotkeys/strings from being overriden by another app?