mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug
- The edit command included two entries for the tags, parsing then only found the first.
This commit is contained in:
parent
e301cda990
commit
103bcef6ab
1 changed files with 7 additions and 5 deletions
12
src/edit.cpp
12
src/edit.cpp
|
@ -145,13 +145,15 @@ static std::string formatTask (Task task)
|
|||
join (allTags, " ", tags);
|
||||
|
||||
if (verbose)
|
||||
before << "# Separate the tags with spaces, like this: tag1 tag2\n"
|
||||
<< " Tags: " << allTags << "\n"
|
||||
<< "# The description field is allowed to wrap and use multiple lines. Task\n"
|
||||
before << "# Separate the tags with spaces, like this: tag1 tag2\n";
|
||||
|
||||
before << " Tags: " << allTags << "\n";
|
||||
|
||||
if (verbose)
|
||||
before << "# The description field is allowed to wrap and use multiple lines. Task\n"
|
||||
<< "# will combine them.\n";
|
||||
|
||||
before << " Tags: " << allTags << "\n"
|
||||
<< " Description: " << task.get ("description") << "\n"
|
||||
before << " Description: " << task.get ("description") << "\n"
|
||||
<< " Created: " << formatDate (task, "entry") << "\n"
|
||||
<< " Started: " << formatDate (task, "start") << "\n"
|
||||
<< " Ended: " << formatDate (task, "end") << "\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue