-
-
Save jmbeach/bde97bfd0d7141c5ca280a2fd81eae38 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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 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