ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

klog

by jotaen ST3

klog time tracking support for Sublime Text

Details

Installs

  • Total 66
  • Win 31
  • Mac 23
  • Linux 12
Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12
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 1 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 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 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1

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.

A klog file with sample data

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
  • 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 text
  • markup.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"},
]