Hi,
I currently have this script
Code:
!F1:: ;Alt-F1: Display all hotkeys
;jethrow
data:=
needle = ["=:].*?::|;; ;excludes hotstrings
;needle = ["=].*?::|;; ;doesn't exclude hotstrings
Loop, Read, %A_ScriptFullPath%
If InStr(A_LoopReadLine,"::") && Not RegExMatch(A_LoopReadLine,needle)
data .= RegExReplace(A_LoopReadLine,".*?:: `;") "`n"
StringTrimRight, data, data, 1
MsgBox %data%
Return
mostly thanks to jethrow
which is designed to open up my ahk file, and look for all the hotkeys that have comments like:
#1: ;Win-1: This is the comment
and then display it in a messagebox.
That way, i have an easy way of making my own reminder of my hotkeys, as I don't need to update any code I just need to comment each of my new hotkeys.
However - after looking on lifehacker I came across this:
http://lifehacker.com/5457619/autohotke ... k-workflow
which I would really like to use - however I am not sure how I could go about combining the two items so that I can still have my Alt-F1 hotkey.
Is it possible? If not I will probably not use the autoinclude file
Thanks very much