AutoHotKey Recompile
The following simple meta script will reload your AutoHotKey script when you save it in Notepad or Notepad++:
#IfWinActive .ahk - Notepad
;; Ctrl+s saves and recompiles in Notepad AND Notepad++
~^+s::
~^s::
Sleep 500
Reload
Return
#IfWinActive
Leave a Reply