Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 363 Bytes

AutoHotkey.md

File metadata and controls

27 lines (20 loc) · 363 Bytes
title date tags
AutoHotkey
2018-05-13 04:35:16 -0700
Util
AutoHotkey

AutoHotkey

代码片段

1. 窗口置顶

^!t::
  WinSet, AlwaysOnTop, toggle, A
Return

2. 输出指定格式日期时间

^!d:: ;Ctrl+alt+d
FormatTime, now_date, %A_Now%, yyyy-MM-dd hh:mm:ss ;格式化当前时间
Send, % now_date ;发送
Return