AutoHotkeyでタイムスタンプを押すスクリプト
code:HHmm.ahk
; Ctrl + Alt + T で現在時刻(HH:mm形式)を挿入
^!t::
FormatTime, CurrentTime,, HH:mm
SendInput %CurrentTime%
return