diff options
-rw-r--r-- | ahk-assistant.ahk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk index 97fe046..6f778ab 100644 --- a/ahk-assistant.ahk +++ b/ahk-assistant.ahk @@ -300,6 +300,9 @@ Insert::appendClipboard() :*?:_time::
insertTime()
Return
+:*?:_dttime::
+ insertBlogDateTime()
+ Return
:*?:_dtime::
insertDateTime()
Return
@@ -630,6 +633,12 @@ insertTime() { Return
}
+insertBlogDateTime() {
+ FormatTime, CurrentDateTime,, yyyy-MM-ddTHH:mm:00
+ Send %CurrentDateTime%
+ Return
+ }
+
insertDateTime() {
FormatTime, CurrentDateTime,, yyyy-MM-dd HH:mm
Send %CurrentDateTime%
|