Docs: Added autofill example

This commit is contained in:
Paul Beckingham 2016-03-30 23:12:41 -04:00
parent 9fc8c7f654
commit 345a813be8
3 changed files with 18 additions and 2 deletions

View file

@ -106,7 +106,20 @@ that extends all day today. Similarly 'tomorrow', 'next week' are bounded.
[5.3] Fill: Autofill
--------------------
Given an exclusion that ends at 8am, and another that begins at 5pm (defining a
work day), then the following commands need to be explained:
$ timew track today ...
This will create an open tracking interval starting at 8am, because of the lack
of a specific start time, and the presence of configured exclusions.
$ timew track 7:45am ...
This will create an open tracking interval starting at 7:45am, because of the
specific start time, which always overrides exclusions. This means is possible
to track time that exists entirely within an exclusion, provided there is a
specific start and stop time.
[6.1] Configuration: Storing/accessing settings

View file

@ -123,6 +123,8 @@ supported keywords are:
--- Raw Notes ---
- 'timew merge <file>' for combining data. Or is this the same as
'timew import <file>'? Probably is.
- 'timew import <file>' will merge data.
- A command for a daily and weekly view of exclusions is needed. To verify that
it is correctly defined. A text-based list should accompany it.

View file

@ -106,6 +106,7 @@ three changes associated with the one command.
Extensions
----------
A simple extension mechanism allows custom reports to be written and shared.
Most reports will be external scripts that use the extension API.
--- Raw Notes ---