mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Documentation
- Updated more documentation regarding 'scheduled' dates. - Added color.scheduled to the rule.precedence.color setting. - Added 'ready' report to the main man page.
This commit is contained in:
parent
98f215b1b5
commit
52dfa8da1e
4 changed files with 13 additions and 5 deletions
|
@ -197,6 +197,7 @@ std::string Config::_defaults =
|
|||
"#color.tag.bug=yellow # Color of +bug tasks\n"
|
||||
"#color.tag.none= # Color of tag-less tasks\n"
|
||||
"color.active=rgb555 on rgb410 # Color of active tasks\n"
|
||||
"color.scheduled=rgb444 on rgb410 # Color of scheduled tasks\n"
|
||||
"color.pri.none= # Color of priority: tasks\n"
|
||||
"color.pri.H=rgb255 # Color of priority:H tasks\n"
|
||||
"color.pri.M=rgb250 # Color of priority:M tasks\n"
|
||||
|
@ -248,6 +249,7 @@ std::string Config::_defaults =
|
|||
"#color.tag.bug=yellow # Color of +bug tasks\n"
|
||||
"#color.tag.none= # Color of tag-less tasks\n"
|
||||
"color.active=black on bright green # Color of active tasks\n"
|
||||
"color.scheduled=black on green # Color of scheduled tasks\n"
|
||||
"color.pri.none= # Color of priority: tasks\n"
|
||||
"color.pri.H=bold white # Color of priority:H tasks\n"
|
||||
"color.pri.M=white # Color of priority:M tasks\n"
|
||||
|
@ -261,7 +263,7 @@ std::string Config::_defaults =
|
|||
"# Here is the rule precedence order, highest to lowest.\n"
|
||||
"# Note that these are just the color rule names, without the leading 'color.'\n"
|
||||
"# and any trailing '.value'.\n"
|
||||
"rule.precedence.color=due.today,active,blocked,overdue,due,keyword,project,tag,recurring,pri,tagged,completed,deleted\n"
|
||||
"rule.precedence.color=due.today,active,blocked,overdue,due,scheduled,keyword,project,tag,recurring,pri,tagged,completed,deleted\n"
|
||||
"\n"
|
||||
"# Shadow file support\n"
|
||||
"#shadow.file=/tmp/shadow.txt # Location of shadow file\n"
|
||||
|
|
|
@ -161,7 +161,7 @@ const std::string DOM::get (const std::string& name)
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
// DOM Supported References:
|
||||
//
|
||||
// TODO <id>.{entry,start,end,due,until,wait}
|
||||
// TODO <id>.{entry,start,end,scheduled,due,until,wait}
|
||||
// TODO <id>.description
|
||||
// TODO <id>.project
|
||||
// TODO <id>.priority
|
||||
|
@ -172,7 +172,7 @@ const std::string DOM::get (const std::string& name)
|
|||
// TODO <id>.recur
|
||||
// TODO <id>.depends
|
||||
//
|
||||
// TODO <uuid>.{entry,start,end,due,until,wait}
|
||||
// TODO <uuid>.{entry,start,end,scheduled,due,until,wait}
|
||||
// TODO <uuid>.description
|
||||
// TODO <uuid>.project
|
||||
// TODO <uuid>.priority
|
||||
|
@ -183,7 +183,7 @@ const std::string DOM::get (const std::string& name)
|
|||
// TODO <uuid>.recur
|
||||
// TODO <uuid>.depends
|
||||
//
|
||||
// {entry,start,end,due,until,wait}
|
||||
// {entry,start,end,scheduled,due,until,wait}
|
||||
// description
|
||||
// project
|
||||
// priority
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue