https://github.com/eplhreu/plover-current-time
Plover plugin for inserting the current time in an strftime format
https://github.com/eplhreu/plover-current-time
plover plover-plugins
Last synced: 3 months ago
JSON representation
Plover plugin for inserting the current time in an strftime format
- Host: GitHub
- URL: https://github.com/eplhreu/plover-current-time
- Owner: EPLHREU
- Created: 2021-04-26T01:11:09.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-26T03:39:50.000Z (about 4 years ago)
- Last Synced: 2024-10-30T00:51:37.143Z (7 months ago)
- Topics: plover, plover-plugins
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Current time
> Plover plugin for inserting the current time in an `strftime()` format
This can be used to indicate the current time when writing, useful for keeping track of when a transcription started, or when notible events occur; such as breaks.
## Installation
Install from the Plover plugins manager.
## Usage and Examples
| Dictionary Entry | Description |
| ---- | ---- |
| `"T*EUPL": "{:time:%H:%M:%S}",` | Output current time in 24-Hour format. |
| `"SO*FL": "{:time:%Y-%m-%dT%H:%M:%S.%f%z}",` | Output current time in ISO-8601 format. |
| `"TKA*ET": "{:time:%A, %d %B, %Y},"` | Output current date in a nice human readable format. |
| `"PWRAEBG": "\n(break started: {:time:%H:%M:%S}{^})\n",` | Note that a break has started and at what time. |
| `"PWRA*EBG": "\n(break ended: {:time:%H:%M:%S}{^})\n",` | Note that the break has ended and at what time. |