Skip to content

Instantly share code, notes, and snippets.

@JamoCA
Created July 30, 2015 14:56
Show Gist options
  • Save JamoCA/2007aa8e4b0aa4028e10 to your computer and use it in GitHub Desktop.
Save JamoCA/2007aa8e4b0aa4028e10 to your computer and use it in GitHub Desktop.
Autohotkey shortcuts to paste current date & time as either a 14 digit date hash (YYYYMMDDHHMMSS) or using formatting.
; Paste Date/time stamp as YYYYMMDDHHMMSS hash (Ctrl ;)
^;:: Send, %A_Now%
return
; Paste personally preferred formatted date/time stamp (Ctrl Shift ;)
^+;::
FormatTime,CurrentTime,%A_Now%,M/d/yyyy HH:mm:ss
Send, %CurrentTime%
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment