mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Verbosity
- Deprecated 'rc.edit.verbose'. - Added support for verbosity token 'edit'. - Updated documentation.
This commit is contained in:
parent
8ccce069d9
commit
160c9708a5
6 changed files with 12 additions and 6 deletions
|
@ -138,7 +138,8 @@ std::string CmdEdit::formatDate (
|
|||
std::string CmdEdit::formatTask (Task task)
|
||||
{
|
||||
std::stringstream before;
|
||||
bool verbose = context.config.getBoolean ("edit.verbose");
|
||||
bool verbose = context.verbose ("edit") ||
|
||||
context.config.getBoolean ("edit.verbose"); // Deprecated 2.0
|
||||
|
||||
if (verbose)
|
||||
before << "# The 'task edit <id>' command allows you to modify all aspects of a task\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue