[AutoHotKey homepage](https://www.autohotkey.com/) [AutoHotKey v2.0 docs](https://www.autohotkey.com/docs/v2/) ## Script cheatsheet ``` ; # == windows key #t::Run "wt" #n::Run "C:\Program Files\Notepad++\notepad++.exe" ; Replace # with ^ for Ctrl, ! for Alt or + for Shift, or try combinations. ; send keys #+j::Send "Mr Flibble" ```