Created
March 10, 2014 16:56
-
-
Save 0x4a/9469018 to your computer and use it in GitHub Desktop.
insert timestamp (time, date or both) at cursor - #time #string #ahk #work
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
; insert date - win + y | |
#y::Send %A_YYYY%-%A_MM%-%A_DD%{Space} | |
; insert time - win + a | |
#a::Send %A_Hour%-%A_Min%-%A_SEC%{Space} | |
; insert date + time - win + q | |
#q::Send %A_YYYY%-%A_MM%-%A_DD%_-_%A_Hour%-%A_Min%-%A_SEC%{Space} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment