mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 22:47:20 +02:00
Feature - #156
+ Task now supports both a 'side' and 'diff' style of undo. + Undo now observes the 'color.undo.before' and 'color.undo.after' configuration variables.
This commit is contained in:
parent
724e9b8113
commit
d00b57ec65
8 changed files with 261 additions and 74 deletions
|
@ -76,6 +76,7 @@ std::string Config::defaults =
|
|||
"tag.indicator=+ # What to show as a tag indicator\n"
|
||||
"recurrence.indicator=R # What to show as a task recurrence indicator\n"
|
||||
"recurrence.limit=1 # Number of future recurring pending tasks\n"
|
||||
"undo.style=side # Undo style - can be 'side', or 'diff'\n"
|
||||
"\n"
|
||||
"# Dates\n"
|
||||
"dateformat=m/d/Y # Preferred input and display date format\n"
|
||||
|
@ -109,6 +110,8 @@ std::string Config::defaults =
|
|||
"color.history.add=on red # Color of added tasks in ghistory report\n"
|
||||
"color.history.done=on green # Color of completed tasks in ghistory report\n"
|
||||
"color.history.delete=on yellow # Color of deleted tasks in ghistory report\n"
|
||||
"color.undo.before=red # Color of values before a change\n"
|
||||
"color.undo.after=green # Color of values after a change\n"
|
||||
"#color.debug=magenta # Color of diagnostic output\n"
|
||||
"\n"
|
||||
"# The following rules are presented in their order of precedence.\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue