Skip to content

Instantly share code, notes, and snippets.

@0x4a
Created March 10, 2014 16:56
Show Gist options
  • Save 0x4a/9469018 to your computer and use it in GitHub Desktop.
Save 0x4a/9469018 to your computer and use it in GitHub Desktop.
insert timestamp (time, date or both) at cursor - #time #string #ahk #work
; 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