Skip to content

Instantly share code, notes, and snippets.

@ship9599
Last active January 5, 2018 16:06
Show Gist options
  • Save ship9599/b2360125d810d9498a7b268b1bb20e7c to your computer and use it in GitHub Desktop.
Save ship9599/b2360125d810d9498a7b268b1bb20e7c to your computer and use it in GitHub Desktop.
Autohotkey Date Examples
:R*?:ddd::
FormatTime, CurrentDateTime,, dd/MM/yy
SendInput %CurrentDateTime%
return
:R*?:xxx::
FormatTime, CurrentDateTime,, yyMMddHHmmss
SendInput %CurrentDateTime%
return
:R*?:aaa::
FormatTime, CurrentDateTime,, yyMMdd
SendInput %CurrentDateTime%
return
:R*?:jjd::
FormatTime, CurrentDateTime,, dd-MM-yy
SendInput %CurrentDateTime%
return
:R*?:yyy::
FormatTime, CurrentDateTime,, dd-MM-yy HH:mm
SendInput %CurrentDateTime%
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment