Skip to content

Instantly share code, notes, and snippets.

@BGMcoder
Created June 5, 2015 18:32
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save BGMcoder/8f8c62ac21eb9d416ed5 to your computer and use it in GitHub Desktop.
ahk info
;push win+3 to show your autohotkey information and copy it to your clipboard so you can paste it
#3::ahkinfo()
ahkinfo(){
isunicode := a_isunicode ? "Unicode" : "ANSI"
thisinfo:= "AutoHotkey " . a_ahkversion . " " . isunicode . " on Windows 7 Pro x64"
clipboard := thisinfo
alert(thisinfo)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment