mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-23 05:27:47 +02:00
Context
- Improved sort column parsing to include an optional trailing solidus, in addition to the +/- sort direction.
This commit is contained in:
parent
9c2aea6d62
commit
bd7e66a939
3 changed files with 17 additions and 7 deletions
|
@ -71,6 +71,7 @@ static bool sort_compare (int left, int right)
|
|||
{
|
||||
std::string field;
|
||||
bool ascending;
|
||||
bool breakIndicator;
|
||||
Column* column;
|
||||
int left_number;
|
||||
int right_number;
|
||||
|
@ -82,7 +83,7 @@ static bool sort_compare (int left, int right)
|
|||
std::vector <std::string>::iterator k;
|
||||
for (k = global_keys.begin (); k != global_keys.end (); ++k)
|
||||
{
|
||||
context.decomposeSortField (*k, field, ascending);
|
||||
context.decomposeSortField (*k, field, ascending, breakIndicator);
|
||||
|
||||
// Urgency.
|
||||
if (field == "urgency")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue