summaryrefslogtreecommitdiffstats
path: root/ahk-assistant.ahk
diff options
context:
space:
mode:
Diffstat (limited to 'ahk-assistant.ahk')
-rw-r--r--ahk-assistant.ahk9
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%