klog
klog time tracking support for Sublime Text
Details
Installs
- Total 81
- Win 37
- Mac 31
- Linux 13
Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
klog for Sublime Text
This package provides support for working with klog time tracking files in the Sublime Text editor.
Features
- Syntax highlighting
- Smart completion for inserting the current date or time. For example:
- Typing
today
completes to the current date - Typing
now
completes to the current time
- Typing
- A few sensible default settings for the
.klg
file format
Configuration
Colour overrides
The pre-defined syntax highlighting should look meaningful in most available colour schemes.
For klog-specific customisations, you can specify the following colour overrides:
markup.other.date.klog
For the date, e.g.2022-03-15
markup.other.should_total.klog
For the should total, e.g.(8h!)
markup.other.summary.klog
For summary textmarkup.other.summary.tag.klog
For tags inside summaries, e.g.#work
markup.other.duration_positive.klog
For positive durations, e.g.5h25m
markup.other.duration_negative.klog
For negative durations, e.g.-15m
markup.other.range.klog
For ranges, e.g.8:00 - 9:20
markup.other.open_range.klog
For open ranges, e.g.14:30 - ?
You can achieve this by adding entries (see Sublime docs) to the rules
list of your scheme’s customisation file:
"rules": [
{"scope": "markup.other.range.klog", "foreground": "#76c7ff"},
]