klog
klog time tracking support for Sublime Text
Labels language syntax
Details
Installs
- Total 92
- Win 41
- Mac 36
- Linux 15
Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 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 | 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 | 0 | 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"},
]