-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
32 additions
and
25 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
; ========== CapsLockX ========== | ||
; 名称:快速输入各种时间戳 | ||
; 作者:snomiao | ||
; 作者:snomiaou | ||
; 联系:[email protected] | ||
; 支持:https://github.com/snomiao/CapsLockX | ||
; 版本:v2020.06.27 | ||
|
@@ -13,15 +13,19 @@ Return | |
FormatTime, TimeString, , yyyy-MM-dd- | ||
SendInput {Text}%TimeString% | ||
Return | ||
:*:#T#:: | ||
FormatTime, TimeString, , yyyy-MM-dd HH:mm:ss | ||
SendInput {Text}%TimeString% | ||
Return | ||
:*:#DD#:: | ||
FormatTime, DateString, , (yyyyMMdd) | ||
SendInput {Text}%DateString% | ||
Return | ||
:*:#DS#:: | ||
FormatTime, TimeString, , yyyy-MM-dd HH:mm:ss | ||
:*:#T#:: | ||
FormatTime, TimeString, , yyyyMMdd.HHmmss | ||
SendInput {Text}%TimeString% | ||
Return | ||
:*:#T#:: | ||
FormatTime, TimeString, , (yyyyMMdd.HHmmss) | ||
SendInput {Text}%TimeString% | ||
Return | ||
:*:#DT#:: | ||
FormatTime, TimeString, , yyyy-MM-dd HH:mm:ss | ||
SendInput {Text}%TimeString% | ||
Return |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# 秒打时间戳 | ||
|
||
| 模式 | 秒打时间戳 | 说明 | | ||
| ---- | ---------- | --------------------------------------------- | | ||
| 全局 | /d 或 (d | 插入日期, 类似 (20190115) 这样的时间戳 | | ||
| 全局 | /t 或 (t | 插入时间, 类似 (20190115.164744) 这样的时间戳 | | ||
| 全局 | /s 或 (s | 插入时间, 类似 (1647) 这样的时间戳 | | ||
| 全局 | /v | 插入版本号, 类似 v2019.01.15 这样的版本号 | | ||
| 模式 | 秒打时间戳 | 说明 | | ||
| ---- | ---------- | --------------------------------------------------- | | ||
| 全局 | #D# | 插入日期, 类似 2021-04-19- 这样的时间戳 | | ||
| 全局 | #DD# | 插入日期, 类似 (20190115) 这样的时间戳 | | ||
| 全局 | #T# | 插入日期时间, 类似 20190115.164744 这样的时间戳 | | ||
| 全局 | #TT# | 插入日期时间, 类似 (20190115.164744) 这样的时间戳 | | ||
| 全局 | #DT# | 插入日期时间, 类似 2021-04-19 04:30:35 这样的时间戳 | |
This file contains 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
This file contains 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